zoukankan      html  css  js  c++  java
  • 安装memcached扩展 验证过了可行

    . 安装libmemached

    复制代码 代码如下:

    wget https://launchpad.net/libmemcached/1.0/1.0.16/+download/libmemcached-1.0.16.tar.gz
    tar -zxvf libmemcached-1.0.16.tar.gz
    cd libmemcached-1.0.16
    ./configure -prefix=/usr/local/libmemcached -with-memcached
    make && make install

    5. 安装php-devel

    复制代码 代码如下:

    yum install php-devel

    6. 安装PHP Memcached扩展

    复制代码 代码如下:


    wget http://pecl.php.net/get/memcached-2.1.0.tgz
    tar -zxvf memcached-2.1.0.tgz
    cd memcached-2.1.0
    /usr/local/php/bin/phpize
    ./configure -enable-memcached -with-php-config=/usr/local/php/bin/php-config -with-zlib-dir -with-libmemcached-dir=/usr/local/libmemcached -prefix=/usr/local/phpmemcached
    make && make install

  • 相关阅读:
    梅森素数
    高精度乘法
    快速幂取模
    高精度加法
    Linux 压缩&解压缩
    Lec_Cloud资源云平台
    IP102,IP102-K_V3.0 输入节点机
    A7互动主机
    音频处理器的使用
    关于测试随笔
  • 原文地址:https://www.cnblogs.com/agang-php/p/4590678.html
Copyright © 2011-2022 走看看