zoukankan      html  css  js  c++  java
  • [centos 6.3]php客户端memcached扩展安装

    环境:centos 6.4 +lamp(yum安装)

    获取memcache扩展

    wget http://pecl.php.net/get/memcache-2.2.5.tgz

    解压:

    gzip -d memcache-2.2.5.tgz 

    tar xvf memcache-2.2.5.tar

    cd memcache-2.2.5

    运行phpize:

    phpize

    Configuring for: 

    PHP Api Version:         20041225 

       Zend Module Api No:      20060613 

       Zend Extension Api No:   220060519

    ./configure --enable-memcache --with-php-config=/usr/bin/php-config --with-zlib-dir

    make && make insatll

    Installing shared extensions: 

    生成的扩展目录(/usr/lib/php/modules)

    修改php.ini 增加以下两行

    extension_dir = "/usr/lib/php/modules"‍

    extension=memcache.so

    service httpd restart 

    phpinfo(); 发现已经有了memcache扩展

    $mc =new Memcache();//生成memcached对象
    $mc->connect('192.168.1.233',11211);//连接memcached服务器
    $mc->set('test','hello world ',0,10);
    $val =$mc->get('test');
    $mc->delete('test');//删除值
    $mc->flush();//刷新memcached所有缓存
    $mc->close();//关闭连接

    输出 hello world

    困难是老天给我们提高的机会,坚定不移勇敢地去攻克,不要退缩,加油!
  • 相关阅读:
    Fluxbox 1.0 RC 2
    Cairo 1.2.0
    Transmission 0.6.1
    Xara LX Xtreme 0.5 Rev1175
    Totem 1.4.2
    ImageMagick 6.2.81
    恢复 Firefox 和 Thunderbird 图标
    Conky 1.4.2
    BitTorrent 4.20.0
    Geany 疾速简便的集成启示情况
  • 原文地址:https://www.cnblogs.com/merlini/p/3191663.html
Copyright © 2011-2022 走看看