Redis
文章平均质量分 77
qq271757232
这个作者很懒,什么都没留下…
展开
-
PHP-redis中文文档
phpredis是php的一个扩展,效率是相当高有链表排序功能,对创建内存级的模块业务关系 很有用;以下是redis官方提供的命令使用技巧: 下载地址如下: https://github.com/owlient/phpredis(支持redis 2.0.4) Redis::__construct构造函数 $redis = new Redis(); connect, open 链转载 2013-11-20 12:09:43 · 709 阅读 · 0 评论 -
PHP Redis扩展安装
PHP Redis 扩展 下载 https://github.com/owlient/phpredis 编译安装 $ wget https://github.com/owlient/phpredis/archive/master.zip $ unzip master $ cd phpredis-master $ phpize $ configure $ make $ make instal原创 2013-11-21 10:52:59 · 603 阅读 · 0 评论 -
Redis命令行教程
$ redis-cli -h 127.0.0.1 > SELECT 8 > keys *原创 2014-02-25 14:50:03 · 387 阅读 · 0 评论 -
RedisCache
<?php /** * @author chenliujin * @since 2013-11-16 */ class RedisCache { protected static $redis; /** * @author chenliujin * @since 2013-11-16 */ public static funct原创 2013-11-16 16:20:05 · 764 阅读 · 0 评论