I am using a stream and that stream stores data with a timestamp as key, to read it back 10 seconds later (this I am using to send push notifications). I was wondering if I could query redis for a list of timestamps in a specific range.
For example: I have a thread running that will get that data from redis every 10 seconds. Let's say there are 7 new messages placed, that means after 10 seconds I'd like to send 7 new push notifications for the messages that were placed in that time (I will check if they are already read, but that's another case).
Just wondering, I am not familiar with redis at all so I hope anyone knows. I am using this