function MemcacheStorage::isEmpty in Memcache Storage 7
Implements DrupalCacheInterface::isEmpty().
Overrides DrupalCacheInterface::isEmpty
File
- ./
memcache_storage.inc, line 198 - Provides class for memcached data handling.
Class
- MemcacheStorage
- Class handles memcached cache objects.
Code
function isEmpty() {
// It is unable to get empty state of memcached pool,
// so we assume it is never empty.
return FALSE;
}