flush() 공개 메소드

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
 /**
  */
 public function clear()
 {
     $this->_memcache->flush();
 }
예제 #3
0
파일: Memcache.php 프로젝트: horde/horde
 /**
  */
 public function clear()
 {
     $this->_memcache->flush();
     $this->_objectcache = array();
 }