如何在 Kohana 中实现子模板的缓存?
我正在 kohana 做一个项目,在从单个页面缓存子模板时遇到问题。我说的是单个页面的子部分......所以一个部分是静态的,另一个部分是动态的......我使用嵌套视图实现它,每个独立的静态部分在一个视图中,每个动态部分在另一个视图中。
这意味着单个页面可以由一系列嵌套视图构成,其中一些仅包含静态数据,其他包含必须在请求时生成的完全动态内容以及一些可能允许半动态生成的内容。状态......我想保留缓存。
有没有 kohana 专家可以解决我的问题? 提前致谢
I am doing a project in kohana and i am facing a problem in caching a sub-template from a single page. i am talking about sub-parts of a single page....so one section is static another is dynamic...ive implemented it using nested views, with each independant static part in one view and each dynaminc part in another.
That means a single page my be constructed of a series of nested views some of which contian only static data, others that contain fully dynamic content that must be generated at the time of the request and some dynamically generated content that may be allowed to be semi state....which i would like to keep cached.
Any kohana expert there to solve my problem?
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Kohana 有一个用于输出缓存的 Fragment 类。 了解有关此类的更多信息。
Kohana has a Fragment class for output caching. Read more about this class.