コード例 #1
0
ファイル: Redis.php プロジェクト: inhere/php-librarys
 /**
  * check hash table is empty or is not exists.
  * @param $key
  * @return bool
  */
 public function isEmptyHTable($key)
 {
     return 0 === $this->redis->hlen($key);
 }
コード例 #2
0
 /**
  * @param $sid
  *
  * @return bool
  */
 public function has($sid)
 {
     return $this->redis->hlen($this->buildKey($sid) > 0) || $this->findSessionInOracleBySid($sid) !== null;
 }
コード例 #3
0
 /**
  * @param $sid
  *
  * @return bool
  */
 public function has($sid)
 {
     return $this->redis->hlen($this->buildKey($sid) > 0);
 }