You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the Redis repository manually scans the entire database every 5 minutes to evict expired keys (like the InMemory repository does).
However, Redis provides out of the box functionality for this by using jedis.expire(...), which should be used instead of the custom code in theremoveExpired(..) function.
The text was updated successfully, but these errors were encountered:
Currently, the Redis repository manually scans the entire database every 5 minutes to evict expired keys (like the InMemory repository does).
However, Redis provides out of the box functionality for this by using
jedis.expire(...)
, which should be used instead of the custom code in theremoveExpired(..)
function.The text was updated successfully, but these errors were encountered: