Horde_Memcache::flush PHP 메소드

flush() 공개 메소드

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

Usage Example

예제 #1
0
파일: Memcache.php 프로젝트: horde/horde
 /**
  */
 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