public function MemCacheDrupal::isEmpty in Memcache API and Integration 7
Implements DrupalCacheInterface::isEmpty().
Overrides DrupalCacheInterface::isEmpty
File
- ./
memcache.inc, line 530
Class
- MemCacheDrupal
- Implementation of cache.inc with memcache logic included
Code
public function isEmpty() {
// We do not know so err on the safe side?
return FALSE;
}