Can you somehow get all items from the Memcache class in php? Im using unique integers to set an object to a memcahce object.
Example:
$memcache = new Memcached();
$memcache->addServer("localhost",$port);
$memcache->set(123, $object);
How can i get all these objects?
