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

WDCP 安装 最新mcached

程序员文章站 2022-05-04 09:47:28
...
Java代码

先安装sasl

yum install cyrus-sasl-plain cyrus-sasl cyrus-sasl-devel cyrus-sasl-lib

yum install gcc+ gcc-c++

Java代码

#先安装libmemcached  
wget https://launchpad.net/libmemcached/1.0/1.0.18/+download/libmemcached-1.0.18.tar.gz  
  
tar zxvf libmemcached-1.0.18.tar.gz  
  
cd libmemcached-1.0.18  
  
./configure --prefix=/usr/local/libmemcached --enable-sasl  
  
make  
  
make install

Java代码

yum install zlib-devel  
  
wget http://pecl.php.net/get/memcached-2.2.0.tgz  
  
tar  zxvf  memcached-2.2.0.tgz  
  
cd memcached-2.2.0  
  
/www/wdlinux/php/bin/phpize   
  
./configure -with-libmemcached-dir=/usr/local/libmemcached -enable-memcached-sasl --with-php-config=/www/wdlinux/apache_php-5.4.26/bin/php-config  
  
#--with-php-config php-config文件目录, 在bin下面  
make  
  
make install

Java代码

#最后在php.ini中加入  
[memcached]  
extension=memcached.so

Java代码

#开启session缓存  
session.save_handler = memcached  
session.save_path = "host"  
extension=memcached.so  
memcached.use_sasl = On  
memcached.sess_binary = On  
memcached.sess_sasl_username = "username"  
memcached.sess_sasl_password = "password"  
memcached.sess_locking = Off