摘要:
phpredis是php的一个扩展,效率是相当高有链表排序功能,对创建内存级的模块业务关系 很有用;以下是redis官方提供的命令使用技巧: 下载地址如下: https://github.com/owlient/phpredis(支持redis 2.0.4) Redis::__construct构造 阅读全文
摘要:
connect('127.0.0.1',6379); $redis->auth('root'); //redis密码 echo $redis->get('name'); $arr= $redis->lRange('list-key',0,1); dump($arr); $redis->rPush('k1','a'); ... 阅读全文