提交 9a2944ac 编写于 作者: L Ludovico Magnocavallo

add expire command to the php lib

上级 bb7dcc1e
......@@ -118,6 +118,12 @@ class Redis {
return $this->get_response();
}
function &expire($name, $time) {
$this->connect();
$this->_write("EXPIRE $name $time\r\n");
return $this->get_response();
}
function &push($name, $value, $tail=true) {
// default is to append the element to the list
$this->connect();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册