Hi,
I have a very simple need for a Job queue in my application.
I don't need my queue to be distributed, it won't need to handle millions concurrent requests.
It just need to be persistent and shared among my play nodes.
Rails/Ruby has Resque, Python has Celery, is there an equivalent in the Scala world ?
I know I could code it myself with Akka and persistent actor backed by something like Redis, but I'm not really in the business of building such a tool.
And I'm guessing that such a need is quite common, we don't all develop Twitter or Facebook size systems.
I would appreciate some help on this,
Thanks