CodeIgniter 中的应用程序级缓存

发布于 2024-12-14 21:13:27 字数 121 浏览 0 评论 0原文

codeIgniter 中是否有调用应用程序级缓存对象的东西?就像 Spring (Java EE) Web 应用程序一样?此外,在 Spring 中,如果我们使用 ehcache,那么会有更多选项,如 FIFO、LIFO 等。

Is there any thing call application level cache objects in codeIgniter? Just like in Spring (Java EE) web applications? Further in Spring if we use ehcache then more options like FIFO,LIFO etc.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

黑凤梨 2024-12-21 21:13:27

是的,这是可能的,并且可以使用网页缓存功能进行处理 - 有关详细信息,请参阅此处的用户指南链接。这使您能够缓存整个页面并跳过该页面的大量框架处理。

如果您正在寻找更精细控制的缓存,那么您希望在 PHP 中安装 APC 或 Memcache 等内容,然后运行 ​​缓存驱动程序。这使您还可以缓存每个请求的特定部分。

Yes this is possible and is handled using the Web Page Caching functionality - see user guide link here for details. This enables you to cache an entire page and skip a large amount of the framework processing for that page.

If you are looking for finer controlled caches then you are looking to install something like APC or Memcache in to PHP and then run one of the caching drivers. This enables you also to cache specific parts of each request.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文