php-redis

centos6.3下php5.3.23编译安装php-redis扩展

可紊 提交于 2019-12-07 13:27:44
下载php-redis扩展 https://github.com/nicolasff/phpredis 操作系统 centos6.3 php版本 php5.3.23 安装php扩展需要 phpize,phpize属于php-devel,所以要先安装php-devel yum install php -devel centos yum安装的php,找不到目录的话,可以 /usr/bin/php-config --prefix 获取到安装目录 --libs 库文件 --extension-dir 扩展文件 --include-dir 头文件 --php-binary php程序所在位置 sudo wget http://open.imop.us/pr.tar.gz tar zxvf pr.tar.gz cd phpredis phpize //这个phpize是安装php模块的 ./configure make sudo make install 修改php.ini文件(/etc/php.ini),加入 extension=redis.so 重启nginx,查看phpinfo中已经有redis扩展 或者 php -i|grep redis 查看 来源: oschina 链接: https://my.oschina.net/u/941259/blog/349513

php-redis函数帮助手册_consturct_connect_open_pconnect...

僤鯓⒐⒋嵵緔 提交于 2019-12-03 21:36:13
Redis::__construct Description Creates a Redis client 创建一个Redis客户端 Example $redis = new Redis(); connect, open Description Connects to a Redis instance.( 连接到一个Redis实例) Parameters host : string. can be a host, or the path to a unix domain socket host:字符串类型 可以使一个HOST IP或者是一个UNIX DOMAIN SOCKET的路径 port : int, optional port:整数型,Redis的运行端口 timeout : float, value in seconds (optional, default is 0 meaning unlimited) timeout:浮点型,连接的市场,单位是秒,默认为0即连接没有时间限制 Return Value BOOL : TRUE on success, FALSE on error. Example $redis->connect('127.0.0.1', 6379); $redis->connect('127.0.0.1'); // port 6379 by default