Is it possible to override the block's cache context?

Created on 30 September 2022, over 2 years ago
Updated 24 January 2023, about 2 years ago

Problem/Motivation

After running our site for one day, the render cache has 58,000 copies of the cheeseburger menu block. It happens because the block's cache context is set to path.url, so every page gets its own copy of the block.

On our site the menu is the same on every page, so we just need one copy. Making the change below has that effect, but is there any hook I can use or other approach so I can change the behaviour without modifying the module's code?

Thanks & regards, David

  public function getCacheContexts() {
    $cache_contexts = [
//      'url.path',
    ];
    return Cache::mergeContexts($cache_contexts, parent::getCacheContexts());
  }
💬 Support request
Status

Fixed

Version

5.0

Component

Code

Created by

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

Production build 0.71.5 2024