Is it possible to have a job queue for a Clojure webapp on Heroku? I see that you can do delayed jobs and use celery for Rails and Django, is there anything similar for Clojure?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
IronMQ is available on Heroku, and there’s a Clojure library that allows you to work with it:
https://github.com/iron-io/iron_mq_clojure
(I notice that there is a problem/feature where if you pass something other than a string as a message to the Iron MQ clojure library, it’ll save an empty string. The easy work-around is to serialize everything as clojure reader forms.)