-
In case I am using redis for many things, the jobs keys makes things very polluted, requiring additional software/logic to read redis. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I don't think BeeQueue is much different other than having fewer features as it was an in-official fork of Bull. It is not possible to implement the feature set and performance of Bull with much less key pollution than we do. In any case, if you use Redis for other things and want isolation, there is a mechanism for that built-in in Redis which is that you can use different DBs, however, it is not supported by Redis Cluster: https://redis.io/docs/latest/commands/select/ You can easily choose the DB as a IORedis option when instantiating your queues: https://github.com/redis/ioredis?tab=readme-ov-file#connect-to-redis Btw, if you are new to Bull I heavily recommend you to use BullMQ instead: https://github.com/taskforcesh/bullmq |
Beta Was this translation helpful? Give feedback.
I don't think BeeQueue is much different other than having fewer features as it was an in-official fork of Bull. It is not possible to implement the feature set and performance of Bull with much less key pollution than we do.
In any case, if you use Redis for other things and want isolation, there is a mechanism for that built-in in Redis which is that you can use different DBs, however, it is not supported by Redis Cluster: https://redis.io/docs/latest/commands/select/ You can easily choose the DB as a IORedis option when instantiating your queues: https://github.com/redis/ioredis?tab=readme-ov-file#connect-to-redis
Btw, if you are new to Bull I heavily recommend you to use BullMQ instead: