摘要:
Redis::__construct 描述: 创建一个Redis客户端 范例: $redis = new Redis(); connect, open 描述: 实例连接到一个Redis. 参数:host: string port: int 返回值:BOOL 成功返回:TRUE;失败返回:FALSE 阅读全文
摘要:
http://redis.readthedocs.org/en/2.4/set.html1, client.end();redis.expire(key,10) ,lsize,llen APPEND mykey " yiibai"client.select('15', function(error) 阅读全文
摘要:
(1)sadd 向一个集合中添加一个元素。例如:sadd set1 Hello (2)smembers 查看集合中的所有元素。例如:smembers set1 (3)srem 删除集合中一个指定的元素。例如:srem set1 Hello (4)spop 随机弹出set集合中德一个元素。例如:spo 阅读全文
摘要:
Redis is a fast and efficient in-memory key-value store. It is also known as a data structure server, as the keys can contain strings, lists, sets, ha 阅读全文