flush() public method

Mark all entries on a memcache installation as expired.
public flush ( )
コード例 #1
0
ファイル: Memcache.php プロジェクト: horde/horde
 /**
  */
 public function clear()
 {
     // No way to delete keys via memcache - have to drop entire DB.
     $this->_memcache->flush();
 }
コード例 #2
0
ファイル: Memcache.php プロジェクト: raz0rsdge/horde
 /**
  */
 public function clear()
 {
     $this->_memcache->flush();
 }
コード例 #3
0
ファイル: Memcache.php プロジェクト: horde/horde
 /**
  */
 public function clear()
 {
     $this->_memcache->flush();
     $this->_objectcache = array();
 }