Sonu Kumar
Sonu Kumar
I don't think this issue is direcly related to Rqueue, can you also force gc and see if the count goes down. The count for all Rqueue objects is the...
This looks like an issue to me, let me investigate this more.
This has been fixed by #248
do you've any metrics at server level to identify how many connections it has established? Rqueue does not consume connection properties from the application.properties/yaml file. You can try to create...
That’s an interesting observation, though I’m not entirely sure what you mean by `channel` in this context. Could you share a more complete stack trace? That would help in identifying...
@igorjava2025 Thanks for bringing this up. The reason it processes messages from the other queue is to prevent starvation. If your requirement is to avoid processing them entirely, we can...
The main issue is that the system will always polls queues sequentially. For example, it checks queue1, then queue2, then queue3, which can significantly increase the number of Redis calls....
I just read the code again, this is how it works it will process one message per minute for any queue, is it processing more than one per minute? Because...
Your assumption is correct. In practice, the library can’t control how users define priority, they might call it high/medium/low or a/b/c. We only care about knowing the priority, which is...
But won’t this hurt performance? If we always poll high-priority first and then low-priority, won’t we end up repeatedly scanning from the top of the high-priority queue all the way...