Linux系统下让PHP提高性能的工具APC_PHP

WBOY
Release: 2016-06-01 12:25:11
Original
953 people have browsed it

Linux工具

    apc 安装下了最新的APC-3.0.18.tgz,解压,进入目录

    apc下载地址 http://pecl.php.net/package/APC

    /usr/local/php/bin/phpize (生产configure文件)

    。/configure ——enable-apc ——enable-apc-mmap ——with-php-config=/usr/local/bin/php-config

    Make make.Install

    cp /usr/local/lib/php/extensions/no-debug-zts-20060613/apc.so /usr/local/lib/php/extensions/apc.so

    chmod 755 /usr/local/lib/php/extensions/apc.so

    配置/etc/php.ini 末尾加入

    extension=apc.so

    apc.enabled = 1

    apc.cache_by_default = on

    apc.shm_segments = 1

    apc.shm_size = 128

    apc.ttl = 7200

    apc.user_ttl = 7200

    apc.num_files_hint = 1024

    apc.write_lock = On

    apc.gc_ttl=3600

    apc.ttl=0

    apc.mmap_file_mask=/tmp/apc.XXXXXX

    重启apache

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!