码迷,mamicode.com
首页 > Web开发 > 详细

PHP 连接 Memcached 服务

时间:2015-11-09 15:24:43      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:

PHP Memcache 扩展包下载地址:http://pecl.php.net/package/memcache,你可以下载最新稳定包(stable)

wget http://pecl.php.net/get/memcache-2.2.7.tgz
tar -zxvf memcache-2.2.7.tgz
cd memcache-2.2.7
/usr/local/php/bin/phpize
./configure --with-php-config=/usr/local/php/bin/php-config
make && make install

修改/etc/php.ini,加入extension = memcache.so

重启apache

php -m检查是否安装成功

 

PHP 连接 Memcached

<?php
  $memcache = new Memcache;             //创建一个memcache对象
  $memcache->connect(‘localhost‘, 11211) or die ("Could not connect"); //连接Memcached服务器
  $memcache->set(‘key‘, ‘test‘);        //设置一个变量到内存中,名称是key 值是test
  $get_value = $memcache->get(‘key‘);   //从内存中取出key的值
  echo $get_value;
?>

 

PHP 连接 Memcached 服务

标签:

原文地址:http://www.cnblogs.com/LoveJulin/p/4949940.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!