Horde_Memcache::flush PHP Method

flush() public method

Mark all entries on a memcache installation as expired.
public flush ( )
    public function flush()
    {
        $this->_memcache->flush();
    }

Usage Example

Esempio n. 1
0
 /**
  */
 public function clear()
 {
     // No way to delete keys via memcache - have to drop entire DB.
     $this->_memcache->flush();
 }
All Usage Examples Of Horde_Memcache::flush