ElggMemcache::clear PHP Метод

clear() публичный Метод

Clears all values in the namespace of this cache
public clear ( ) : boolean
Результат boolean
    public function clear()
    {
        // using stacks grouping http://www.stashphp.com/Grouping.html#stacks
        // this will clear all key keys beneath it
        return $this->stash_pool->getItem("/{$this->getNamespace()}")->clear();
    }