安装redis
安装redis和phpredis模块
原创
©著作权归作者所有:来自51CTO博客作者寞踪的原创作品,谢绝转载,否则将追究法律责任
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代码测试
<?php
$redis = new Redis();
$redis->connect('127.0.0.1',6379);
$redis->set('test','hello world!');
echo $redis->get('test');
?>
输出hello world!
上一篇:ubuntu安装mariadb
下一篇:Ubuntu 10.04分辨率
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章