コード例 #1
0
ファイル: Redis.php プロジェクト: hwsyy/php-management-system
 /**
  * 移除并返回列表key的尾元素
  * 当key不存在时,返回nil
  * @param unknown $key
  */
 public function rPop($key)
 {
     return $this->redis->rPop($key);
 }
コード例 #2
0
ファイル: BalanceRedisBase.php プロジェクト: noikiy/public
 /**
  * 移除并返回列表 key 的尾元素
  * @param string $key
  */
 public function rPop($key = '')
 {
     return $this->cacheWrite->rPop($key);
 }