美文网首页
PHP 服务缓存加速优化

PHP 服务缓存加速优化

作者: 云窗96 | 来源:发表于2018-08-13 15:04 被阅读0次

    这里介绍的是Nginx的XCache

    作用:提高php引擎的高并发访问及执行速度,解析过的php的程序访问,不需要重复解析

    XCache的安装

    1.前期避免perl编译问题

    配置LC_ALL环境变量

    ##追加环境变量
    echo 'export LC_ALL=C'>>/etc/profile
    
    
    source /etc/profile
    

    2.安装perl 依赖包
    yum -y install perl-devel

    3.获取xcache并安装

    cd /hjy/tools/
    
     wget http://xcache.lighttpd.net/pub/Releases/3.2.0/xcache-3.2.0.tar.bz2 
    
    tar xf xcache-3.2.0.tar.bz2 
    
    
    /usr/local/php/bin/phpize 
    

    ./configure --enable-xcache --with-php-config=/usr/local/php/bin/php-config

    make
    
    make install
    

    php.ini配置XCache

    cat /hjy/tools/xcache-3.2.0/xcache.ini>>php.ini
    

    xcache的网页管理

    编辑php.ini

    1950 [xcache.admin]

    1951 xcache.admin.enable_auth = On #打开

    1952

    1953 ; use http://xcache.lighttpd.net/demo/cacher/mkpassword.php to generate yo ur encrypted password

    1954 xcache.admin.user = “hjy” #用户名

    1955 xcache.admin.pass = “09f999ec1b384bbdb1bba2c5daaf0231” #经过md5加密

    /xcacheadmin/index.php

    重启Php

    相关文章

      网友评论

          本文标题:PHP 服务缓存加速优化

          本文链接:https://www.haomeiwen.com/subject/eykubftx.html