|
|
|
|
|
by nhumrich
1601 days ago
|
|
Distributed queuing, with horizontal scaling workers and retries, without ever loosing a message/job, is surprisingly difficult to get right. It's simply not worth your time in a lot of cases.
Similarly, why people don't just write their own web framework. It sounds like your question is focused on "why not just use an in memory queue".
Two reasons:
1. You loose messages/jobs, and it's not scalable
2. If the task is CPU intensive, it will lock up or slow down your web server. |
|