|
|
|
|
|
by xaritas
4051 days ago
|
|
In terms of languages that facilitate doing work concurrently or in parallel with the HTTP request/response cycle: - Java / Scala / Clojure
- Go
- Erlang (add Elixir if you are comfortable with its maturity)
Not meant to be an exhaustive list of languages. Celery is great but there are plenty of situations where chucking units of work into a job queue or running a cron job feels like an incomplete solution. |
|
For something more similar to Go/Java/Scala/Clojure/whatever, you can use Python's gevent or asyncio.