如何缓存分页结果和分页结果教义?
我正在使用 Zend 框架 & Zend_Paginator 与 Doctrine 2 和 DoctrineExtensions Paginate 适配器。
我需要缓存我的结果,但是,我不知道应该在哪里执行此操作。
对我来说,在存储库中执行此操作似乎是合乎逻辑的,但我尝试过,但它不适用于分页器适配器。
你要怎么走?
I'm using Zend Framework & Zend_Paginator with Doctrine 2 and DoctrineExtensions Paginate Adapter.
I need to cache my result, however, I don't know where should I do this.
It seems logical to me to do it in the Repository, but I tried and it doesn't work with the paginator adapter.
How would you go?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看
Zend_Cache
。有一些不同的适配器,包括文件、数据库和 memcached - 但处理它的一般方法是这样的:$result
不是缓存的变量。Check out
Zend_Cache
. There are a handful of different adapters including file, database, and memcached - but the general way of handling it is this:$result
is not a cached var.