Daniel Ribeiro
Daniel Ribeiro

Reputation: 3119

Sinatra message Queue

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?

Upvotes: 2

Views: 1576

Answers (1)

Dave Pirotte
Dave Pirotte

Reputation: 3816

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.

Upvotes: 2

Related Questions