doushe2513 2019-04-18 08:30
浏览 117
已采纳

是否需要OPcache缓存并包含php文件?

I have many classes and php files included to another php files.I use OPcache, but I suspect that it doesn't cache all that included php files. Is that true? If yes, then how to turn on this files caching too?

  • 写回答

1条回答 默认 最新

  • donglian5309 2019-04-18 09:01
    关注

    Generally we use Opcache for caching the complied opcode so that when the same script will run it won’t compile the script again and serves it from cache.

    For this you have to enable Opcache in php.ini which will affect your whole application.

    opcache.enable = 1;

    If you want to achieve this on script to script basis, then no need to enable in php.ini, rather you can set it using ini.set() method.

    Now when you want to enable page cache using Opcache which is available from PHP 7.0 onwards, you can do this by enabling this on php.ini or using ini.set() and setting up your cache directory, like below.

    opcache.file_cache = “cache_directory”;

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

悬赏问题

  • ¥15 怎么更换移动网络摄像头的通信模块实现公用
  • ¥15 vue但是页面显示的数据为空为什么呀,明明在钩子函数中已经成功赋值(相关搜索:输出数据)
  • ¥15 syri可视化不显示插入缺失
  • ¥30 运行软件卡死查看系统日志分析不出来
  • ¥15 C语言代码改正特征选择算法设计,贝叶斯决策,,设计分类器,远程操作代码修正一下
  • ¥15 String 类valuve指向的问题
  • ¥15 在ros2的iron版本进行编译时遇到如下问题
  • ¥18 vs用setup project打包项目实现安装完立即运行
  • ¥15 孟德尔随机化TwoSampleMR在线提取结局数据,遇到Error in check_reset(override_429)的问题
  • ¥15 ONNX转RKNN遇到问题
手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部