W3总缓存 - 每小时自动清除页面缓存

时间:2015-12-29 10:54:07

标签: wordpress caching wordpress-plugin page-caching

是否可以在W3总缓存中每小时清除页面缓存?我有一个动态网站(插件),其数据可能每隔几分钟更新一次,所以我想每小时清除一次缓存,这样数据就像是最新的。

现在我不使用页面缓存,否则数据不是最新的,但它确实减慢了我的网站响应时间,我真的需要改进它!

这可能与W3总设置有关吗?

此致

的Joep

1 个答案:

答案 0 :(得分:1)

将它放在你的孩子主题functions.php

/**
 * Define the "api" routes for the application.
 *
 * These routes are typically stateless.
 *
 * @return void
 */
protected function mapApiRoutes()
{
    Route::group([
        'middleware' => 'api',
        'namespace' => $this->namespace,
        'prefix' => 'api',
    ], function ($router) {
        require base_path('routes/api.php');
    });
}