windows 下phpredis的安装
redis:
redis是一个key-value存储系统。和Memcached类似,它支持存储的value类型相对更多,包括string(字符串)、list(链表)、set(集合)、zset(sorted set --有序集合)和hash(哈希类型)。这些数据类型都支持push/pop、add/remove及取交集并集和差集及更丰富的操作,而且这些操作都是原子性的。在此基础上,redis支持各种不同方式的排序。与memcached一样,为了保证效率,数据都是缓存在内存中。区别的是redis会周期性的把更新的数据写入磁盘或者把修改操作写入追加的记录文件,并且在此基础上实现了master-slave(主从)同步。
1.下载:
php_redis.dll:https://github.com/nicolasff/phpredis/downloads
2.下载后
由于里面有两个模块分别是vc6,vc9编译的,我们需要知道我们的Php是vc6还是vc9的:
新建一个reids.php
点击(此处)折叠或打开
- ?php
-
phpinfo();
-
?>
3.安装模块
把php_redis.dll模块放到php安装目录下/ext/中
在php.ini里的
;extension=php_bz2.dll之前增加extension=php_redis.dll
4.测试
重启apache之后,访问redis.php
点击(此处)折叠或打开
- phpinfo();
- $redis = new Redis();
- $redis->connect("192.168.60.6","6379");
- $redis->set("test","Hello World");
- echo $redis->get("test");
- ?>
测试结果
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn