博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CentOS环境PHP安装memcache扩展
阅读量:4975 次
发布时间:2019-06-12

本文共 1878 字,大约阅读时间需要 6 分钟。

安装memcache

yum install memcached

 

安装libmemcached库

yum install libmemcached

PHP安装Memcache扩展

root@blog.phpha.com] wget -c http://pecl.php.net/get/memcache-3.0.8.tgz[root@blog.phpha.com] tar -zxvf memcache-3.0.8.tgz[root@blog.phpha.com] cd memcache-3.0.8[root@blog.phpha.com] /usr/local/php/bin/phpize[root@blog.phpha.com]  ./configure  -with-php-config=/usr/bin/php-config -with-zlib-dir[root@blog.phpha.com] make && make install#Installing shared extensions:     /usr/lib64/php/modules/#/usr/lib64/php/modules/memcache.so[root@blog.phpha.com] vim /etc/php.ini#extension = /usr/lib64/php/modules/memcache.so[root@blog.phpha.com] service php-fpm reload

 启动

memcached -d -u root -p 11211

 测试:

addServer("localhost",11211);echo "Version:".$mem->getVersion();class testClass{ private $str_attr; private $int_attr; public function __construct($str,$int) { $this->str_attr = $str; $this->int_attr = $int; } public function set_str($str) { $this->str_attr = $str; } public function set_int($int) { $this->int_attr = $int; } public function get_str() { return $this->str_attr; } public function get_int() { return $this->int_attr; }}$test = new testClass("hell world",1123);$mem->set("key",$test,false,1000);var_dump($mem->get("key"));$test_array = array("index_1"=>"hello","index_2"=>"world");$mem->set("array_test",$test_array,false);var_dump($mem->get("array_test"));?>
View Code

 

 

 

问题:

1.找不到php-config

find / -name php-config

 

2.找不到 ZLIB memcache support requires ZLIB

yum install zlib-devel

 

3.can't run as root without the -u switch

memecached -u root start

 

 

 

 

参考: 

centos 为php安装memcache.

CentOS环境PHP安装memcache扩展.

Centos安装Memcache.

 

转载于:https://www.cnblogs.com/ccdc/p/4553921.html

你可能感兴趣的文章
Infix to Postfix Expression
查看>>
Perl/Nagios – Can’t locate utils.pm in @INC
查看>>
Javascript 有用参考函数
查看>>
GNSS 使用DFT算法 能量损耗仿真
查看>>
【转】Simulink模型架构指导
查看>>
[转载]java开发中的23种设计模式
查看>>
揭秘:黑客必备的Kali Linux是什么,有哪些弊端?
查看>>
linux系统的远程控制方法——学神IT教育
查看>>
springboot+mybatis报错Invalid bound statement (not found)
查看>>
Linux环境下SolrCloud集群环境搭建关键步骤
查看>>
MongoDB的简单使用
查看>>
prometheus配置
查看>>
【noip2004】虫食算——剪枝DFS
查看>>
python 多进程和多线程的区别
查看>>
sigar
查看>>
iOS7自定义statusbar和navigationbar的若干问题
查看>>
[Locked] Wiggle Sort
查看>>
deque
查看>>
c#中从string数组转换到int数组
查看>>
java小技巧
查看>>