コード例 #1
0
ファイル: RedisStore.php プロジェクト: latrell/lock
 /**
  * 解锁
  *
  * @param string $key
  */
 public function release($name)
 {
     $key = $this->getKey($name);
     if ($this->redis->ttl($key)) {
         $this->redis->del($key);
     }
 }