Replies: 1 comment 4 replies
-
For this kind of meta functionality, you have two options, either offload data to a separate database with query capabilities or implement custom Redis code for adding indexes and searches on the data. I am aware alternative 2 is not particularly easy to achieve currently... |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have created single queue in which multiple logged in users can add job to it. Now on dashboard I want to show all the jobs which are completed/delayed/failed for that particular user. I using uuidv4 for job id as well as user id is of type uuidv4. Now how to retrieve jobs of particular logged in user? For this should I create job id and user id mapping in database and then query all the jobs using getJob or is there any better way to do this? Please suggest. Thanks
Beta Was this translation helpful? Give feedback.
All reactions