|
@@ -295,8 +295,6 @@ class Redis extends Driver
|
|
|
* @param unknown $val
|
|
|
*/
|
|
|
public function lPush($key,$val){
|
|
|
-
|
|
|
-
|
|
|
return $this->handler->lPush($key,$val);
|
|
|
}
|
|
|
|
|
@@ -305,7 +303,6 @@ class Redis extends Driver
|
|
|
*如果 key 不存在,那么 key 的值会先被初始化为 0 ,然后再执行 INCR 操作。
|
|
|
*/
|
|
|
public function Incr($key){
|
|
|
-
|
|
|
return $this->handler->incr($key);
|
|
|
}
|
|
|
|