PHP数组缓存适配器

编辑本页

警告:您正在浏览的文档欧宝官网下载appob娱乐下载Symfony 5.2,现已不再维护。

本页的更新版本用于Syob娱乐下载mfony 6.2(当前稳定版本)。

PHP数组缓存适配器

该适配器是用于静态数据(例如应用程序配置)的高性能缓存,这些数据经过优化并预加载到OPcache内存存储中。它适用于任何热身后基本上是只读的数据:

12 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
使用ob娱乐下载\组件\缓存\适配器\FilesystemAdapter;使用ob娱乐下载\组件\缓存\适配器\PhpArrayAdapter;//以某种方式,决定是时候预热缓存了!如果needsWarmup) {//一些静态值= (“stats.products_count”= >4711“stats.users_count”= >1356,);缓存PhpArrayAdapter (//缓存值的单个文件__DIR__' / somefile.cache '//一个备份适配器,如果你在预热后设置值FilesystemAdapter ());缓存->热身();}/ /……然后,使用缓存!cacheItem缓存->getItem (“stats.users_count”);回声cacheItem->get ();

请注意

此适配器需要打开opcache.enablephp . ini中设置。

此工作,包括代码示例,是根据创作共用BY-SA 3.0许可证。