コード例 #1
0
ファイル: Memcache.php プロジェクト: reoring/sabel
 public function delete($key)
 {
     return $this->kvs->delete($key);
 }
コード例 #2
0
ファイル: Memcache.php プロジェクト: reoring/sabel
 public function destruct()
 {
     if ($this->started && (!$this->newSession || !empty($this->attributes))) {
         $this->kvs->write($this->sessionId, $this->attributes, $this->maxLifetime);
     }
 }