Starling is a great (at least for small projects) and simple message queue, however, it doesn't actually manage or start workers that consume the queues. Workling does this for Rails projects, but doesn't work for pure ruby applications, neither for Sinatra.

Before I fork workling, or create my own custom one with threads/fork, is there another project that does it?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

Look at resque. It is framework agnostic and contains rake tasks to start an arbitrary number of workers to consume your queues. It uses redis lists for the queue backends, so you will need to install and manage that.

link|improve this answer
Really nice. Since this was create for Github, and Github uses Sinatra, it has full Sinatra support. Albeit, I really intend to stick with starling, as we do not have to manage Redis' Erlang/OTP dependencies, adapting to worker (github.com/defunkt/resque/blob/master/lib/resque/worker.rb) from Resque's is easier than changing Workling's. Starling great advantage is that you can send ruby objects, not only json, and they will serialized/deserialized correctly. Ok: it is a messaging system: no need for real objects as messages, but it is nice. – Daniel Ribeiro Sep 4 '10 at 16:13
1  
Redis is actually written in C, so you don't need to worry about Erlang. Ubuntu carries redis in its repositories so you can install from there, but it is extremely simple to install from source if you need to. – Dave Pirotte Sep 4 '10 at 16:39
Yes, I confused with Riak, which is in Erlang – Daniel Ribeiro Sep 4 '10 at 18:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.