快速配置php7 + swoole + redis

Posted 李星保

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了快速配置php7 + swoole + redis相关的知识,希望对你有一定的参考价值。

安装lnmp

# wget http://soft.vpser.net/lnmp/lnmp1.4.tar.gz 
# tar zxvf lnmp1.4.tar.gz 
# cd lnmp1.4
# ./install.sh

安装redis拓展

# pecl install igbinary && pecl install redis

swoole安装准备工作

安装http2

# wget https://github.com/nghttp2/nghttp2/releases/download/v1.30.0/nghttp2-1.30.0.tar.bz2 
# tar -jxvf nghttp2-1.30.0.tar.bz2 
# cd nghttp2-1.30.0 
# ./configure 
# make 
# make install

安装postgresql

# yum install -y postgresql-devel

安装hiredis

# wget https://codeload.github.com/redis/hiredis/tar.gz/v0.13.3
# tar -zxvf v0.13.3 
# cd hiredis-0.13.3/
# make -j
# make install
# ldconfig 

安装swoole

# pecl install swoole

以上是关于快速配置php7 + swoole + redis的主要内容,如果未能解决你的问题,请参考以下文章

初学Swoole:PHP7安装Swoole的步骤

linux + centos 安装php7.2.7 + swoole 4.0.3

PHP7开启OPcache和Swoole哪个提升更大?性能的提升对比

Swoole:PHP7安装Swoole的步骤

php7安装swoole

PHP7+Swoole比Nginx/Golang性能高75%