0

Is there any (preferably open source) distributed cache server that allows me to implement a custom action to run when a key's TTL expires? If not, is there any open source, light weight server I could potentially modify to make it do what I want?

xargsgrep
  • 1
  • 1

1 Answers1

1

This is not a cache server, but rather a simple in memory key/value store - redis which can have expiration set on the keys - and since the version 2.8 supports notifications when keys expire (How to get callback when key expires in REDIS and http://redis.io/topics/notifications)

Community
  • 1
  • 1
peter
  • 14,348
  • 9
  • 62
  • 96