What is the best way to run asynchronous jobs in a Rails application? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T03:14:14Zhttp://stackoverflow.com/feeds/question/124360http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/124360/what-is-the-best-way-to-run-asynchronous-jobs-in-a-rails-application5What is the best way to run asynchronous jobs in a Rails application?Otto2008-09-23T22:39:24Z2008-11-04T05:21:53Z
<p>I know there are several plugins that do asynchronous processing. Which one is the best one and why?</p>
<p>The ones I know about are:</p>
<ul>
<li><a href="http://backgroundrb.rubyforge.org/" rel="nofollow">BackgrounDRb</a></li>
</ul>
http://stackoverflow.com/questions/124360/what-is-the-best-way-to-run-asynchronous-jobs-in-a-rails-application/124421#1244212Answer by RichH for What is the best way to run asynchronous jobs in a Rails application?RichH2008-09-23T22:52:42Z2008-09-25T19:59:53Z<p><a href="http://backgroundrb.rubyforge.org/" rel="nofollow">BackgrounDRb</a> - Pros: Full featured, messaging, Cons: Threaded (eek - Rails isn't thread safe!), complex </p>
<p><a href="http://github.com/dougal/daemon_generator/tree/master" rel="nofollow">Daemon Generator</a> - Pros: Simple, runs jobs and thats it!, Cons: None of that fancy messaging stuff.</p>
http://stackoverflow.com/questions/124360/what-is-the-best-way-to-run-asynchronous-jobs-in-a-rails-application/124428#1244283Answer by Rémi for What is the best way to run asynchronous jobs in a Rails application?Rémi2008-09-23T22:53:36Z2008-09-23T22:53:36Z<p>starling and workling seem pretty interesting (see the <a href="http://railscasts.com/episodes/128-starling-and-workling" rel="nofollow">screencast</a>) if you might have several such process, and you want to queue them.</p>
<p>you might also be interested by the <a href="http://railscasts.com/episodes/127-rake-in-background" rel="nofollow">previous screencast</a> that use rake for background process, and by the future one that will probably be about another solution to the same question.</p>
http://stackoverflow.com/questions/124360/what-is-the-best-way-to-run-asynchronous-jobs-in-a-rails-application/125968#1259683Answer by Olly for What is the best way to run asynchronous jobs in a Rails application?Olly2008-09-24T08:09:17Z2008-09-24T08:09:17Z<p>Whether something is the 'best' solution really depends on what the problem is you're trying to solve. In some cases the best solution will be the most lightweight solution, in other the most heavyweight. </p>
<p><a href="http://backgroundrb.rubyforge.org/" rel="nofollow"><strong>BackgroundRb</strong></a> is probably the most fully-featured Rails background job processor, but it's also the most complicated so will require more investment to get to grips with it. BackgroundRb can probably handle most use cases, from the simple to the complex.</p>
<p>I have heard very good things about Ara T. Howard's <a href="http://codeforpeople.rubyforge.org/svn/bj/trunk/README" rel="nofollow"><strong>Background Job</strong></a> (Bj) which, to quote the README is <em>a brain dead simple zero admin background priority queue for Rails</em>. This is a much more lightweight solution and may be preferable to BackgroundRb for a majority of scenarios as a result.</p>
<p>If all you want is a solution for infrequent offline batch-style processing then <a href="http://wiki.rubyonrails.org/rails/pages/RunnerScript" rel="nofollow"><code><strong>script/runner</strong></code></a> which comes with all Rails apps would be more than adequate. </p>
<p>For further reading you might want to look at <a href="http://wiki.rubyonrails.org/rails/pages/HowToRunBackgroundJobsInRails" rel="nofollow">HowToRunBackgroundJobsInRails</a> from the <a href="http://wiki.rubyonrails.org/rails" rel="nofollow">Rails Wiki</a>.</p>
http://stackoverflow.com/questions/124360/what-is-the-best-way-to-run-asynchronous-jobs-in-a-rails-application/127533#1275331Answer by gwynmorfey.com for What is the best way to run asynchronous jobs in a Rails application?gwynmorfey.com2008-09-24T14:31:15Z2008-09-24T14:31:15Z<p>We use Cron. Easy to set up, easy to maintain, and it Always Works.</p>
<p>BackgroundRb will eat your brain.</p>
http://stackoverflow.com/questions/124360/what-is-the-best-way-to-run-asynchronous-jobs-in-a-rails-application/127786#1277862Answer by ismaSan for What is the best way to run asynchronous jobs in a Rails application?ismaSan2008-09-24T15:15:17Z2008-09-24T15:15:17Z<p>Starling + Workling plugin is dead simple. Plus, it uses Memcached which is simple, tested and scalable.</p>
http://stackoverflow.com/questions/124360/what-is-the-best-way-to-run-asynchronous-jobs-in-a-rails-application/260934#2609340Answer by gnufied for What is the best way to run asynchronous jobs in a Rails application?gnufied2008-11-04T04:56:18Z2008-11-04T04:56:18Z<p>Hey,</p>
<p>BackgrounDRb is not threaded, its completely process based. It only has a feature of thread pools which user can use, if he wants to handle IO bound tasks concurrently.</p>
<p>Try 1.1 release and let me (on my blog) or on mailing list know about any issues.</p>
http://stackoverflow.com/questions/124360/what-is-the-best-way-to-run-asynchronous-jobs-in-a-rails-application/260974#2609742Answer by Cameron Booth for What is the best way to run asynchronous jobs in a Rails application?Cameron Booth2008-11-04T05:21:53Z2008-11-04T05:21:53Z<p>I'll add DJ (Delayed Job) to the list - <a href="http://blog.leetsoft.com/2008/2/17/delayed-job-dj" rel="nofollow">http://blog.leetsoft.com/2008/2/17/delayed-job-dj</a></p>
<p>The github guys recently gave it a great review: <a href="http://github.com/blog/197-the-new-queue" rel="nofollow">http://github.com/blog/197-the-new-queue</a></p>