Is it possible in Redis to set TTL (time to live) not for a specific key, but for a member for a set?
I am using a structure for tags proposed by Redis documentation - t
You can not expire items in a list directly, but it's possible to register a lua script in your redis server and add this functionality to redis. Redis Expiration based on value