使用 PHP 查看缓存
我有一个关于视图缓存的问题,假设我有以下代码块:
<?php
class View {
public function render ( $template , $path = null ) { }
// ...
}
这是我的“MainView”,其中该类在所有其他视图中扩展,例如“ClientsView”..等。
但是,我想要实现一种方法来拦截投降的请求,通过缓存,当我将此参数传递给渲染方法时,我对缓存说,或者其他什么..我只是想保持控制..所以我有一个'ViewCacheStorage ', 在哪里您将存储缓存的文件,以及每个缓存到期的剩余时间,在无需摇动主视图的情况下执行此操作的最佳方法是什么?
I have a question about the cache of a view, suppose I have the following block of code:
<?php
class View {
public function render ( $template , $path = null ) { }
// ...
}
This is my 'MainView', in which the class is extended in all other views, such as 'ClientsView' .. etc.
But, I wanted to implement a way to intercept the request of the surrender, through a cache, I say to the cache when I pass this parameter to the render method, or something .. I just wanted to keep control .. so I have a 'ViewCacheStorage', where you will store the files that are cached, and the remaining time to expiration of each cache, what is the best way to do this without me having to shake the main view?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一个简单的选择:
然后所有其他视图都从 CachingView 扩展。
One easy option:
And then all your other views extend from CachingView.