如何在Fat-free Framework中强制清除动态URL的缓存?

时间:2015-12-21 20:41:59

标签: php fat-free-framework

如何清除图案化网址(动态网址)的缓存? 比如,/assets/js/@jsname.js ...

我不想等到缓存过期后,我想在我更新数据库后立即使用它。

They said要清除数据库,您需要为其指定密钥。而且我不知道我应该为钥匙输入什么:(

这是我的代码:

\F3::route("GET @virtualasset: /assets/img/@link/@size.@id.@type", "Control\\Imager->akses", 3600 * 24 * 7); // cache seminggu :3

2 个答案:

答案 0 :(得分:0)

使用以下key缓存HTTP响应:hash(VERB URI).url

因此,如果您想要刷新assets/js/foo.js,则必须执行以下操作:

$hash=$f3->hash('GET /assets/js/foo.js');
$cache->clear($hash.'.url');

但这有点像黑客,因为这个密钥没有记录,可能会在未来发生变化。

此外,您需要记住路由$ttl参数不仅会触发服务器缓存,还会触发客户端缓存。这意味着您需要实现缓存共享来刷新客户端缓存。类似于assets/js/foo.js?v=3

您可以考虑直接在控制器类中实现缓存。这会给你更多的灵活性。

答案 1 :(得分:0)

我使用这条路线:

  

GET | HEAD / assets / @ folder / @ type / v- @ version / * = controllers \ Assets-> send,3600

我的控制器:

namespace controllers;
class Assets {

    private $paths;
    private $types = ['css', 'js', 'i', 'fonts', 'files', 'icons'];
    private $dontminify = ['i', 'fonts', 'files', 'icons'];


    public function __construct() {
        $this->fw = \Base::instance();
        $this->paths['app'] =  '../app/views/site_tpl/assets/';
        $this->paths['core'] = '../core/views/default/assets/';
    }

    public function send() {

        if (in_array($this->fw->get('PARAMS.folder'), array_keys($this->paths))
            && in_array($this->fw->get('PARAMS.type'), $this->types))
        {
            $folder = $this->paths[$this->fw->get('PARAMS.folder')];
            $type = $this->fw->get('PARAMS.type');
            if (in_array($type, $this->dontminify)) {
                $file = $folder . $type . '/' . $this->fw->pop('PARAMS');
                if (\Web::instance()->send($file)) {
                    return true;
                }
            } else {
                $this->fw->set('UI', $folder . $type . '/');
                $file = $this->fw->pop('PARAMS');
                if (file_exists($this->fw->get('UI') . $file)) {
                    if (!$this->fw->exists('GET.dontminify')) {
                        echo \Web::instance()->minify($file);
                        return true;
                    } elseif (\Web::instance()->send($this->fw->get('UI') . $file)) {
                        return true;
                    }
                }
            }
        }
        $this->fw->error(404);
    }

}

所以,当我想要更新文件版本时,我会写这样的东西:

<script src="/assets/app/js/v-20160205/main.js"></script>