您好,欢迎访问一九零五行业门户网

centos redis 安装

centos6.4+lnmp1.0
1.安装redis
$ wget http://download.redis.io/releases/redis-2.6.16.tar.gz
$ tar xzf redis-2.6.16.tar.gz
$ cd redis-2.6.16
$ make
2.启动服务
$ src/redis-server
3.测试
$ /redis-2.6.16/src/redis-cli
$ set test kk
$ get test
到这里都一切正常,但是怎么安装redis的php扩展?
网上各种教程试了都不行,死活装不成
回复讨论(解决方案) 你安装好php,直接加载php_redis扩展即可。
redis的官网都有,很多推荐
http://redis.io/clients
predis ? ★ repository jol1hahn  mature and supported
phpredis ? ★ repository yowgi  this is a client written in c as a php module.
rediska ? repository homepage shumkov
redisserver repository oz  standalone and full-featured class for redis in php
redisent ? repository justinpoliey
credis repository colinmollenhour  lightweight, standalone, unit-tested fork of redisent which wraps phpredis for best performance if available.
推荐:http://www.sitepoint.com/an-introduction-to-redis-in-php-using-predis/
其实是我不熟悉centos,配置php.ini需要重启php-fpm,我之前一直重启nginx所以一直以为没有安装成功。
其它类似信息

推荐信息