是否有缓存学说对象的标准方法?
假设我有许多对象的属性很少改变。我不希望数据库一直被访问来获取这些对象的数据。我能做些什么?
Suppose I have many objects with attributes that rarely change. I don't want the DB being hit all the time to fetch the data for those objects. What can I do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Doctrine2 提供 查询 和 < a href="http://www.doctrine-project.org/docs/orm/2.1/en/reference/caching.html#result-cache" rel="nofollow">结果缓存。
缓存依赖于第三方缓存解决方案,例如 APC、Memcache 和 Xcache。 Doctrine 提供了驱动程序来将它们集成到您的应用程序中。
Doctrine2 offers query and result caching.
The caching relies on third party caching solutions like APC, Memcache and Xcache. Doctrine offers drivers to integrate those into your application.