【apc】
The Alternative PHP Cache (APC) is a free and open opcode cache for PHP. Its goal is to provide a free, open, and robust framework for caching and optimizing PHP intermediate code.
【安装】-linux平台
1.pecl安装
pecl在php bin目录下面(PHP5.4.24)
--pecl install apc
2.源码安装
wget http://pecl.php.net/get/APC-3.0.19.tgz
tar xzvf APC-3.0.19.tgz
/usr/local/webserver/php/bin/phpize
./configure –enable-apc –enable-apc-mmap –with-php-config=/usr/local/webserver/php/bin/php-config –prefix=/usr/local/apc
make && make install
【配置】
配置php.ini
[apc]
extension=apc.so ;(要结合extension_dir,否则要全路径)
apc.enabled = 1 ;(启用apc,0为禁用)
apc.cache_by_default = on ;(File cache支持编译后的文件)
apc.shm_segments = 1 ;(共享内存块数)
apc.shm_size = 64 ;(共享内存大小)
apc.ttl =0 ;(Time To Live nothing will be removed until the entire cache becomes full)
apc.gc_ttl = 7200 ;(The number of seconds that a cache entry may remain on the garbage-collection list)
apc.num_files_hint = 0 ;(number of distinct user cache variables to store. Set to zero or omit if not sure)
【测试】
拷贝apc.php到web目录下面(apc.php在php家目录的lib下面)
【参考】
http://blog.lixiphp.com/linux-php-apc-install-configuration/#axzz36OfJeWX2
http://www.jb51.net/article/38377.htm
http://purpen.iteye.com/blog/774790/
http://techportal.inviqa.com/2010/10/07/understanding-apc/
- 大小: 119 KB
- 大小: 128.2 KB
分享到:
相关推荐
标题中的“php apc扩展插件,PHP大文件上传”主要涵盖了两个PHP相关的技术主题:一是APC(Alternative PHP Cache)扩展,二是PHP大文件上传的处理。下面将详细阐述这两个知识点。 首先,APC(Alternative PHP Cache...
**Windows版PHP APC缓存扩展DLL** APC(Alternative PHP Cache)是PHP中的一款非常重要的缓存机制,专为提高PHP脚本的执行效率而设计。在PHP 5.3.28版本中,APC作为PHP的一个扩展,提供了一个高效的opcode缓存,将...
**PHP APC**,全称为Alternative PHP Cache,是PHP的一个免费且公开的代码缓存系统,专为提升PHP应用性能而设计。APC的核心功能是缓存PHP代码的Opcode,即操作码,这是PHP解释器理解的中间语言。通过缓存Opcode,APC...
总结一下,这个压缩包`aspell-0.60.5.tar.gz_php_php_apc`包含了Aspell的一个特定版本及其可能与PHP APC扩展相关的源代码。APC作为PHP的opcode缓存器,通过内存缓存提高PHP性能,对于PHP应用的运行效率至关重要。...
php_apc.dll
**PHP APC (Alternative PHP Cache) 插件详解** 在PHP开发环境中,APC(Alternative PHP Cache)是一个非常重要的加速器和缓存工具。它能够优化PHP的性能,通过缓存编译后的PHP代码来减少每次请求时的解析时间。...
**PHP 5.3.3 APC扩展模块详解** 在PHP的开发环境中,加速器(如Alternative PHP Cache,简称APC)扮演着至关重要的角色。APC是PHP的一个免费且开源的 opcode 缓存,用于提高PHP脚本的执行速度。在PHP 5.3.3版本中,...
【使用APC缓存优化PHP程序】 APC(Alternative PHP Cache)是PHP的一个重要的性能优化工具,它通过缓存PHP的编译后的中间代码来提高应用程序的运行速度,减轻服务器负担。APC不仅可以提高网站的响应速度,还能降低...
apc 检测脚本,php 下apc 模块监测脚本,直接运行即可
**PHP APC(Alternative PHP Cache)** 是一个广泛使用的 PHP 缓存和优化工具,它可以显著提升 PHP 应用程序的性能。APC 提供了对 PHP 中间代码的缓存,减少每次请求时编译 PHP 脚本的时间,从而加快页面加载速度。 ...
windows下 php apc的扩展,可以缓存php脚本。非常不错的apc扩展,经本人测试能正常使用
**PHP 5.3与APC扩展** PHP(Hypertext Preprocessor)是一种广泛使用的开源脚本语言,尤其适用于Web开发。PHP 5.3是该语言的一个版本,它引入了若干新特性,如命名空间、 Late Static Bindings 和 Closure 对象等,...
APC(Alternative PHP Cache)是PHP的一个非常重要的扩展,它主要功能是对PHP代码进行编译缓存,以提升PHP应用程序的运行效率。在标题中提到的"php_apc-3.1.10-5.3-vc9-x86.zip"是一个专为Windows平台设计的APC扩展...
windows平台下的,php5.3.3版本的apc扩展文件,之前在csdn上找到的不能用,千辛万苦找到了一个能用的放上来 apc放到ext目录下 然后在php.ini中加上下列代码: extension=php_apc.dll [apc] apc.enabled = 1 apc....
PHP APC(Alternative PHP Cache)是PHP的一种扩展,它能够为PHP程序提供性能优化。它通过缓存PHP代码的中间编译结果来降低脚本执行时间,从而减少服务器的CPU使用率。APC分为系统缓存和用户数据缓存两部分,系统...
**PHP APC配置详解** PHP Alternative PHP Cache (APC) 是一个免费且开源的 PHP 缓存和优化工具,用于加速 PHP 应用程序的运行。它通过存储预编译的 PHP 代码在共享内存中来减少对磁盘的读取,从而提高性能。本文将...