Skip to content
Snippets Groups Projects

Issue #2916705: Page cache isn't invalidated

1 unresolved thread

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
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.
  • Pierre Rudloff added 1 commit

    added 1 commit

    Compare with previous version

  • Pierre Rudloff added 1 commit

    added 1 commit

    • 17302f35 - Don't use page cache max age

    Compare with previous version

  • Pierre Rudloff added 1 commit

    added 1 commit

    • 9f5b8815 - Add missing parameter description

    Compare with previous version

  • Please register or sign in to reply
    Loading