Hey im hoping someone can shed some light on the best approach to achieve the following.
Basically i want to be able to store a list of ids against several types in redis so that i can perform a query using the list of ids.
Ie we have a user type that has actions that were created by them. i want to be able to get a key from redis like user:X:action_ids == [1, 6, 7, 8] and do a query from postgres like from actions where id in [ids]
Id like the list to be ordered as i will probably only need ten items back a time, so indexing that list of ids is important too.
I have been looking over the docs and have a basic understanding of whats required im just not sure how to combine all elements together to produce the result