How would one return all the values stored within the memcache? I have tried using entrySet() and values() methods on the cache but both result in an java.lang.UnsupportedOperationException.
Ideally, I need to return all the entities stored within the cache and bulk save them to the datastore - is this possible?
Thanks