当我为自定义页面使用 HTTP 缓存时,Symfony2 会在缓存文件夹下为其创建一个文件,并且可以为此缓存设置超时。但是,当我更新与该特定页面相关的一些数据库信息时,我的用户无法看到更改(取决于缓存寿命)。为了解决这个问题,我想使用该页面的 URI 在更新操作中删除特定文件,但我不知道该怎么做!。
您知道如何使用其 URI 删除缓存文件或解决此问题的任何其他方法吗?
当我为自定义页面使用 HTTP 缓存时,Symfony2 会在缓存文件夹下为其创建一个文件,并且可以为此缓存设置超时。但是,当我更新与该特定页面相关的一些数据库信息时,我的用户无法看到更改(取决于缓存寿命)。为了解决这个问题,我想使用该页面的 URI 在更新操作中删除特定文件,但我不知道该怎么做!。
您知道如何使用其 URI 删除缓存文件或解决此问题的任何其他方法吗?
对我来说这个工作,但我修改了我的环境类。您必须使用自己的缓存路径和环境:
private function clearCache($slug)
{
global $kernel;
if (get_class($kernel) == 'AppCache') {
$key = 'md' . hash('sha256', ($_SERVER['SERVER_PORT'] == 80 ? 'http://' : 'https://') . $_SERVER['HTTP_HOST'] . '/' . $slug);
$cacheMdFileName = \Environment::instance()->getCachePath() . '/' . $kernel->getKernel()->getEnvironment() . DIRECTORY_SEPARATOR . 'http_cache' . DIRECTORY_SEPARATOR . substr($key, 0, 2) . DIRECTORY_SEPARATOR . substr($key, 2, 2) . DIRECTORY_SEPARATOR . substr($key, 4, 2) . DIRECTORY_SEPARATOR . substr($key, 6);
$file = file_get_contents($cacheMdFileName);
$key = unserialize($file)[0][1]['x-content-digest'][0];
$cacheEnFileName = \Environment::instance()->getCachePath() . '/' . $kernel->getKernel()->getEnvironment() . DIRECTORY_SEPARATOR . 'http_cache' . DIRECTORY_SEPARATOR . substr($key, 0, 2) . DIRECTORY_SEPARATOR . substr($key, 2, 2) . DIRECTORY_SEPARATOR . substr($key, 4, 2) . DIRECTORY_SEPARATOR . substr($key, 6);
unlink($cacheMdFileName);
unlink($cacheEnFileName);
}
}