navvy
navvy copied to clipboard
Simple Ruby background job processor inspired by delayed_job, but aiming for database agnosticism.
upgrade adapters to current RubyGems.org versions
Most of the time if a job fails it's fine to retry later, however some things aren't recoverable and there's no point constantly retrying. For these things I still want...
pure ruby set-up guide missing
I'm getting a "load_missing_constant" issue when I try to use script/generate. I'm using ree-1.8.7-2010.02 and bundler. I'm also using navvy 0.3.2. Any idea what's going on? Thanks in advance, Scott...
Hi, When running multiple Navvy workers concurrently, it seems like workers are able to pick up each others jobs when invoked exactly at the same moment. For example, say I...
The #next method for the ActiveRecord adapter calls Time.now in the query. Time.now does not get converted to db time. This should be changed to Time.current to respect the database's...
I'm currently developing two seperate apps that run on the same MySQL server. I just introduced navvy in one project, but I'm pretty sure I will be using it in...