Home > php教程 > php手册 > body text

php opcode 缓存

WBOY
Release: 2016-06-06 19:35:58
Original
1197 people have browsed it

最近在做php接口优化,其中一个优化是使用opcode 缓存 。 查阅资料后得知, 缓存 opcode可通过使用 apc、eAccelerator、XCache 三种扩展。 后来发现在我们的服务器上已经安装了eAccelerator 扩展,php.ini 配置如下: [eaccelerator] zend_extension="/usr/l

最近在做php接口优化,其中一个优化是使用opcode缓存

查阅资料后得知,缓存opcode可通过使用 apc、eAccelerator、XCache 三种扩展。

后来发现在我们的服务器上已经安装了 eAccelerator 扩展,php.ini 配置如下:

[eaccelerator]
zend_extension="/usr/local/php5/lib/php/extensions/no-debug-non-zts-20090626/eaccelerator.so"
eaccelerator.shm_size="64"
eaccelerator.cache_dir="/tmp/eaccelerator_cache"
eaccelerator.enable="1"
eaccelerator.optimizer="1"
eaccelerator.check_mtime="1"
eaccelerator.debug="0"
eaccelerator.filter=""
eaccelerator.shm_max="0"
eaccelerator.shm_ttl="3600"
eaccelerator.shm_prune_period="3600"
eaccelerator.shm_only="0"
eaccelerator.compress="1"
eaccelerator.compress_level="9"

对照这些配置项的含义后,发现没有哪个配置明确说明 已经开启缓存opcode的功能。

如果已经开启了,怎么才能证明,使用了opcode缓存。怎么查看缓存的命中率、缓存状态等相关信息?

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 Recommendations
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!