disque-module icon indicating copy to clipboard operation
disque-module copied to clipboard

Disque ported as Redis module

Results 10 disque-module issues
Sort by recently updated
recently updated
newest added

We have been using disque as a very simple queue on various projects and loved how simple it was to spin up a single instance and use it. The requirement...

One of the reasons Redis is so popular is because it's super easy to create a cluster with ElasticCache. Unfortunately they don't support Redis Modules. If we were to want...

With streams being added in Redis 5, it seems like they include support for a lot of the same capabilities as disque is offering, especially through consumer groups. It would...

Thanks for this awesome project. At the beginning of the README.md it is stated: > IMPORTANT please read: This project for now does not accept pull requests, but feel free...

I implemented a partially-async replication patch for the original Disque project and back then put in a hopeful PR (https://github.com/antirez/disque/pull/200). This was a vital feature for my use case (multiple...

For now Disque will consider a job replicated once there are N copies in th cluster. In case of multiple DCs in order to improve jobs safety especially if persistence...

So the consumer can delay the requeing of failed job.

right now you have to list all the jobs in one queue and call DELJOB for each of them to celar jobs on one queue. This is cumbersome and takes...