Ejemplo n.º 1
0
 /**
  * @see parent::rem()
  */
 function rem($key)
 {
     return $this->conn->remove($key);
 }
 /**
  * @see parent::destroy()
  */
 function destroy($session_id)
 {
     $key = $this->getKey($session_id);
     self::$client->remove($key);
     return true;
 }
Ejemplo n.º 3
0
 /**
  * @see parent::release()
  */
 public function release()
 {
     if ($this->canRelease()) {
         $this->client->remove($this->getLockKey());
     }
 }