欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

php安装redis扩展以及测试

程序员文章站 2022-08-11 11:01:56
1.安装最新版的Redis sudo apt-get install -y python-software-properties sudo add-apt-reposi...

1.安装最新版的Redis

sudo apt-get install -y python-software-properties  
sudo add-apt-repository -y ppa:rwky/redis  
sudo apt-get update  
sudo apt-get install -y redis-server 

测试是否启动

ps aux | grep redis

如果没有启动则启动

sudo service redis-server start

进入redis

redis-cli 

显示 127.0.0.1:6379>
exit退出
安装成功
2.安装php扩展

wget https://github.com/nicolasff/phpredis/zipball/master -O php-redis.zip  
unzip php-redis.zip 
cd phpredis-phpredis-0f51b8c/ 

下载、解压;

whereis phpize5

查找phpize脚本的位置
phpize5: /usr/bin/phpize5 /usr/bin/X11/phpize5 /usr/share/man/man1/phpize5.1.gz
执行脚本:

/usr/bin/phpize5
/usr/bin/phpize
./configure --with-php-config=/usr/bin/php-config
make && make install
Libraries have been installed in:
   /home/phpredis-phpredis-b718ce0/modules

在 php.ini内添加下面语句:
extension=/home/phpredis-phpredis-b718ce0/modules/redis.so
重启apache2
在index.php中找到该扩展模式说明扩展成功;
3.写一个简单的测试文件进行实测

connect('127.0.0.1', 6379);
$redis->set('key', 'hello world');
echo $redis->get('key');

测试结果输出helloworld说明扩展成功