CodeIgniter 中的应用程序级缓存
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是可能的,并且可以使用网页缓存功能进行处理 - 有关详细信息,请参阅此处的用户指南链接。这使您能够缓存整个页面并跳过该页面的大量框架处理。
如果您正在寻找更精细控制的缓存,那么您希望在 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.