--
---
You received this message because you are subscribed to the Google Groups "memcached" group.
To unsubscribe from this group and stop receiving emails from it, send an email to memcached+...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
You received this message because you are subscribed to a topic in the Google Groups "memcached" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/memcached/D4Szg9tsaS0/unsubscribe.
To unsubscribe from this group and all its topics, send an email to memcached+...@googlegroups.com.
As was answered, there's no built-in way to determine when a key was set. Furthermore, memcached itself doesn't track when the oldest key changes. The only way to approximate the behavior you want is to store the set times in each value, get all possible keys, and then do the comparison yourself. This will not be fast or efficient.
I suggest taking a step back k and talking about the higher-level gioal you're trying to accomplish that makes you think you need the time the oldest key was set. There may be a good way to accomplish your actual goal without this information.
~Ryan