首頁 > 後端開發 > php教程 > redis php装配使用

redis php装配使用

WBOY
發布: 2016-06-13 10:30:04
原創
892 人瀏覽過

redis php安装使用

?

安装redis
shell> wget http://redis.googlecode.com/files/redis-2.0.4.tar.gz
shell> tar zxvf redis-2.0.4.tar.gz
shell> mv redis-2.0.4 redis
shell> cd redis
shell> make
shell> redis-server 不要关
shell> redis-cli
redis>set foo bar
OK
redis>get foo
“bar”

安装phpredis模块

https://github.com/owlient/phpredis

下载phpredis
解压
shell> cd phpredis
shell> /usr/local/php/bin/phpize 这个phpize是安装php模块的
shell> ./configure –with-php-config=/usr/local/php/bin/php-config
shell> make
shell> make install
接下来在php.ini中添加extension=redis.so 先要看看有没有extension_dir=/…….
重启apache或者nginx

php代码测试
$redis = new Redis();
$redis->connect(‘127.0.0.1′,6379);
$redis->set(‘test’,'hello world!’);
echo $redis->get(‘test’);
?>

输出hello world!

http://code.google.com/p/php-redis/

相关命令

http://redis.readthedocs.org/en/2.4/index.html

相关文章?http://blog.nosqlfan.com/tags/Redis

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板