作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我将热门用户数据缓存在名为 top_users.php 的文件中,我们称它为文件缓存。
但是APC会缓存所有的.php文件,如何从APC中排除一些特殊的.php文件
缓存?
最佳答案
您可以在 apc 配置文件中使用过滤器:
apc.filters = "-/usr/share/files/.*"
这不会缓存匹配该模式的文件,基本上该路径/usr/share/files/下的任何文件
对于你来说,你可以使用:
apc.filters = "-/my/share/top_users\.php"
检查一下 http://www.php.net/manual/en/apc.configuration.php#ini.apc.filters
这假定文件是绝对路径所必需或包含的。
关于php - 如何从 APC 缓存中排除 .php 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13456475/
我是一名优秀的程序员,十分优秀!