Issue #2916705: Page cache isn't invalidated
1 unresolved thread
Merge request reports
Activity
added 2 commits
-
55f090ff...b91dab9b - 2 commits from branch
project:2.0.x
-
55f090ff...b91dab9b - 2 commits from branch
added 4 commits
-
d389b6ea...4a307acd - 2 commits from branch
project:2.0.x
- e6822bb8 - Issue #2916705: Page cache isn't invalidated
- e3ed50dd - Issue #2916705: Take global max-age into account.
-
d389b6ea...4a307acd - 2 commits from branch
84 84 } 85 86 // Check against global max-age. 87 $global_max_age = $this->configFactory->get('system.performance') 88 ->get('cache.page.max_age'); 89 $maxAge = min($global_max_age, $maxAge); 90 85 91 $response->headers->set('Cache-Control', 'public, max-age=' . $maxAge); 92 93 try { 94 // This is needed because page_cache uses this header to invalidate 95 // the page cache. 96 $response->setExpires(new \DateTime('+' . $maxAge . ' seconds')); 97 } 98 catch (\Exception) { 99 // Could not set Expires header because max-age is invalid.
Please register or sign in to reply