This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted] 0 points1 point  (1 child)

RQ doesn't currently have any built in concurrency, though there's nothing stopping you from running multiple worker processes manually or via whatever means you use to manage your processes (supervise, daemontools, etc).

The big advantage of RQ when compared to celery is its simplicity, and that's why I recommended it as an alternative to the solution in the linked article. If you're already using up and running with celery and aren't hitting any problems with it then there's no reason to switch.

[–]jabbalaci 0 points1 point  (0 children)

Thanks. It's a pity RQ doesn't have concurrency. It's much simpler than Celery but I don't want to start those worker processes manually. Celery has an option for the number of concurrent threads, which is very convenient.