I have recently got Enyim Memcached
up and running and it is working great. Using the library I am able to store and retrieve items with no problem.
However, I was wondering if there was a way to retrieve all items from the cache. I am aware that you are able to retrieve an item by its key:
MemcachedClient client = new MemcachedClient()
object o = client.Get("key");
But I can't seem to see a GetAll()
or similar method, am I missing something?