Does memcached keep the persistent storage of IN-MEMORY objects as long as it runs, and the available configured memory space?
An example is storing session data for messaging systems. Under what circumstances will I try to read the memcached key (which I wrote earlier, without timeouts for data against this key) and get an empty answer? what is the behavior of memcached when the configured memory is exceeded (will it be replaced with some data and what data will be replaced)?
source share