I always find it useful, thank you. I have a question.
Can I store event data with an expiration date in Redis? Or are you interested in being able to do that?
My system does not require a feed for inactive users. Therefore, I want to store the data with an expiration date in Redis.
By storing the data with expiration date, Redis with volatile-ttl enabled can free up memory with eviction.
So being able to set an expiration date on the data will be useful in my use case.
Thanks.