Drupal is a registered trademark of Dries Buytaert
drupal 10.6.8 Update released for Drupal core (10.6.8)! drupal 11.3.9 Update released for Drupal core (11.3.9)! drupal 11.3.8 Update released for Drupal core (11.3.8)! drupal 11.3.7 Update released for Drupal core (11.3.7)! drupal 11.2.11 Update released for Drupal core (11.2.11)! drupal 10.6.7 Update released for Drupal core (10.6.7)! drupal 10.5.9 Update released for Drupal core (10.5.9)! cms 2.1.1 Update released for Drupal core (2.1.1)! drupal 11.3.6 Update released for Drupal core (11.3.6)! drupal 10.6.6 Update released for Drupal core (10.6.6)! cms 2.1.0 Update released for Drupal core (2.1.0)! linkit 7.0.14 Minor update available for module linkit (7.0.14). diff 2.0.0 Major update available for module diff (2.0.0). masquerade 8.x-2.2 Minor update available for module masquerade (8.x-2.2). video_embed_field 3.1.0 Minor update available for module video_embed_field (3.1.0). bootstrap 8.x-3.40 Minor update available for theme bootstrap (8.x-3.40). menu_link_attributes 8.x-1.7 Minor update available for module menu_link_attributes (8.x-1.7). domain 3.0.1 Minor update available for module domain (3.0.1). leaflet 10.4.8 Minor update available for module leaflet (10.4.8). single_content_sync 1.4.15 Minor update available for module single_content_sync (1.4.15).

redis_session

No security coverage
View on drupal.org

Drupal normally saves logged-in (and anonymous) session data in the sessions database table. On busy sites that can mean a lot of read/write traffic to your database. The Redis Session module changes that: after you enable it and configure Redis, session data is stored in Redis instead, using the same Redis connection as the Redis module. You do not get a new “session admin screen” in the UI—the module replaces the low-level session handler so Drupal keeps working as usual, with storage moved to Redis.

Features

  • Redis session storage — Session payloads are written to Redis with a TTL aligned with PHP’s session.gc_maxlifetime.
  • Same shape as core — Field layout matches core’s session handler (uid, hostname, session, timestamp) for predictable behavior on Drupal 8/9.
  • Optional single-session mode — Via settings.php, you can end the previous session when a user logs in again (see Post-Installation).
  • Status check — Reports → Status includes a line confirming whether a Redis client could be obtained.

When to use it: High-traffic sites, many concurrent sessions, or architectures where you want session I/O off the primary database. Why: Performance and scalability; Redis is a common choice next to MySQL/PostgreSQL.

Post-Installation

  1. Configure $settings['redis.connection'] in settings.php (host, port, password, database index base, etc.) as described in the Redis module documentation.
  2. Enable the Redis module, then enable Redis Session.
  3. Rebuild caches (e.g. Drush cr or Performance → Clear caches).
  4. There is no configuration form in this release; behavior is automatic once Redis is configured and both modules are enabled.
  5. Expectation: Changing session backend or key layout can log users out once; plan a maintenance window if needed.
  6. If several sites share one Redis instance, use different base (DB index) or isolation practices so keys do not collide.

Additional Requirements

  • Redis module (required dependency).
  • A running Redis server reachable from PHP.
  • PhpRedis and/or Predis as supported by your Redis module setup (per that module’s README).
  • Correct redis.connection (and any Redis-module-specific settings) in settings.php.

Activity

Total releases
1
First release
Mar 2026
Latest release
1 month ago
Release cadence
Stability
100% stable

Releases

Version Type Release date
1.0.0 Stable Mar 24, 2026