Hi group, I am using memcached, which I started with the following command: > memcached -d -M -k -m 12288 -p 11211
As I understand the -M option is going to ensure that all the values that I store in memcached will be retained, unless I delete them explicitly. But, I noticed several key misses despite the -M option and I tried writing a script to test it and the stats are as below. My code is in python and I use the python-memcached for accessing memcached. Actual no. of keys stored: 858726 # of entries retrieved: 388686 # of entries missed: 470040 As you can see, more than half the entries are missing and I can't figure out why? Has someone got some idea? Thanks a lot for your help. - B
