TTL for a set member

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


No, this isn’t possible (and not planned either). The recommended approach is to use an ordered set with score set to timestamp and then manually removing expired keys. To query for non-expired keys, you can use ZRANGEBYSCORE $now +inf, to delete expired keys, ZREMRANGEBYSCORE -inf $now will do the trick.

In my application, I simply issue both commands every time I query the set. I also combine this with (long) expiration time on the set itself to eventually purge unused sets.

This article walks through it in more detail.


It is not possible to directly expire items in list, sets, or zsets.

You need to implement a mechanism to be notified when the master item expires, so that you can maintain the corresponding sets accordingly.

See the answer to this question, I think it applies to your use case (replace session by id, and user by tag):

Redis, session expiration, and reverse lookup