We are looking at using Redis for sessions state, but it looks like it only support LRU expiry policy when RAM reaches its limit.
So we it wont start cleaning up until RAM runs out.
Previously we've been using AppFabric cache, which allowed use to set an expiry policy based on last access time, e.g. if not read in 30 minutes then expiry
As we are running these machines in a virtualized environment, we'd rather not have to allocated active RAM when it storing data that isn't getting used.
Is there any way to achieve this sort of expiry policy with Redis Cache?
Thanks in Advance, Joel