ElggMemcache::clear PHP Method

clear() public method

Clears all values in the namespace of this cache
public clear ( ) : boolean
return 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();
    }