I use Spymemcached to get instances from a cache server.
How can I know information such as the date of creation/modification of an instance?
Additional Info :
I'm testing over two servers Infinispan and Hazelcast.
Thank you :)
I use Spymemcached to get instances from a cache server.
How can I know information such as the date of creation/modification of an instance?
Additional Info :
I'm testing over two servers Infinispan and Hazelcast.
Thank you :)
This is not possible through Memcached protocol - see the protocol specification. When such information is not provided through the protocol, you cannot find any method in the API.
The only possibility is to store create/modify time as part of the value or in the 32 bit flags (these are opaque to the server).