Skip to main content
Drupal is a registered trademark of Dries Buytaert
Release: OpenID Connect / OAuth client 3.0.0-alpha9 New alpha version released for module openid_connect (3.0.0-alpha9). Usage Milestone: Google Analytics Module google_analytics crossed 1,000 active installs. Release: Timelinr 1.0.1 Minor update available for module timelinr (1.0.1). Release: GraphQL Compose Codegen 1.1.2 Minor update available for module graphql_compose_codegen (1.1.2). Release: Mapy.com 1.1.3 Minor update available for module mapycom (1.1.3). Release: Ckeditor5 entity browser 3.0.3 Minor update available for module ckeditor5_entity_browser (3.0.3). Release: Ckeditor5 entity browser 3.0.1 Minor update available for module ckeditor5_entity_browser (3.0.1). Release: Ckeditor5 entity browser 3.0.2 Minor update available for module ckeditor5_entity_browser (3.0.2). Release: Teamleader Integration 4.0.2 Minor update available for module teamleader (4.0.2). Module Revived: Entityqueue Buttons 1.1.2 Module entityqueue_buttons updated after 8 months of inactivity (1.1.2).

Page Cache Vary

4 sites No security coverage Drupal 10–11
View on drupal.org

This module enhances Drupal's internal page cache by allowing cache variations based on specific request headers. It provides an interface for developers to define which headers should influence caching, ensuring that different versions of a cached page are served based on header values. This functionality is particularly useful for anonymous users.

Provide the ability to specify by which Request header the cache should vary. Implement the vary feature in the Internal Page Cache by extanding it.
Works on cached pages visited by the anonymous user.

Features

Provide a new interface for Cache Context allowing to specify a list of headers to vary the response by (using https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Vary).

The Vary header is populated accordingly.

Usage example

Simply implement \Drupal\page_cache_vary\VaryCacheContextInterface with your CacheContext class.

namespace Drupal\page_cache_vary_test\Cache\Context;

use Drupal\Core\Cache\CacheableMetadata;
use Drupal\Core\Cache\Context\CalculatedCacheContextInterface;
use Drupal\Core\Cache\Context\RequestStackCacheContextBase;
use Drupal\page_cache_vary\VaryCacheContextInterface;

/**
 * Varies the context depending on the x-country-code header.
 *
 * Cache context ID: 'country'.
 */
final class CountryCacheContext extends RequestStackCacheContextBase implements CalculatedCacheContextInterface, VaryCacheContextInterface {

  const COUNTRY_CODE_HEADER = 'x-country-code';

  /**
   * {@inheritdoc}
   */
  public static function getLabel(): string {
    return (string) t('Country');
  }

  /**
   * {@inheritdoc}
   */
  public function getContext($parameter = NULL): string {
    return $this->requestStack->getMainRequest()->headers->get(self::COUNTRY_CODE_HEADER, '');
  }

  /**
   * {@inheritdoc}
   */
  public function getCacheableMetadata($parameter = NULL): CacheableMetadata {
    return new CacheableMetadata();
  }

  /**
   * Return the list of headers the response vary by.
   */
  public function getVaryHeaders(): array {
    return [self::COUNTRY_CODE_HEADER];
  }

}

Additional Requirements

This module as a requirement on the Internal Page Cache.

Depends on

Dependencies of the latest stable release

  • page_cache Drupal core

Required by

Tracked projects that depend on this one

No tracked projects depend on this one yet.

Activity

Tracked releases
6
Tracked since
Oct 2024
Latest release
7 months ago
Releases (12 mo)
1 ▼ from 5
Maintenance
Slowing

Release Timeline

Releases

Version Type Core Release date
1.0.4 Stable 10–11 Jan 26, 2026
1.0.3 Stable 10–11 Jan 29, 2025
1.0.2 Stable 10–11 Nov 20, 2024
1.0.1 Stable 10–11 Nov 18, 2024
1.0.0 Stable 10–11 Oct 25, 2024
1.0.0-beta1 Pre-release 10–11 Oct 25, 2024