|
|
|
|
|
by maxbond
1280 days ago
|
|
Not disagreeing, but purely for interest, Redis contains a queue-like primitive. https://redis.io/docs/data-types/streams/ You can make good job queues out of this, combined with sharding or consistent hashing, for low(ish) latency applications. Each shard has a stream, they operate on data stored in Redis, and you pass them the key to this data over their stream. But SQS is great, and a great rebuttal to the article. Totally easier to prototype a job queue that way than with pg, and you probably won't need to move off of it. |
|