使用 PHP 查看缓存

发布于 2024-12-21 18:37:49 字数 401 浏览 2 评论 0原文

我有一个关于视图缓存的问题,假设我有以下代码块:

<?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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

_失温 2024-12-28 18:37:50

一个简单的选择:

class CachingView extends View {

    protected $cacheStorage;

    public function render($template, $path = null) {
        if (! $this->getCacheStorage()->has($template)) {
           $this->getCacheStorage()->store(parent::render($template, $path));
        }

        return $this->getCacheStorage()->get($template);
    }

    public function getCacheStorage() {
        if (empty($this->cacheStorage)) {
            $this->cacheStorage = new ViewCacheStorage();
        }
        return $this->cacheStorage;
    }
}

然后所有其他视图都从 CachingView 扩展。

One easy option:

class CachingView extends View {

    protected $cacheStorage;

    public function render($template, $path = null) {
        if (! $this->getCacheStorage()->has($template)) {
           $this->getCacheStorage()->store(parent::render($template, $path));
        }

        return $this->getCacheStorage()->get($template);
    }

    public function getCacheStorage() {
        if (empty($this->cacheStorage)) {
            $this->cacheStorage = new ViewCacheStorage();
        }
        return $this->cacheStorage;
    }
}

And then all your other views extend from CachingView.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文