Drupal is a registered trademark of Dries Buytaert
cms 2.1.0 Update released for Drupal core (2.1.0)! menu_link_attributes 8.x-1.7 Minor update available for module menu_link_attributes (8.x-1.7). eca 3.1.0 Minor update available for module eca (3.1.0). sophron 3.1.1 Minor update available for module sophron (3.1.1). ai 1.3.1 Minor update available for module ai (1.3.1). seven 2.0.0-beta6 New beta version released for theme seven (2.0.0-beta6). seven 1.0.1-beta1 First beta version released for theme seven (1.0.1-beta1). editoria11y 3.0.0-beta7 New beta version released for module editoria11y (3.0.0-beta7). modeler_api 1.1.0 Minor update available for module modeler_api (1.1.0). form_mode_control 8.x-2.6 Minor update available for module form_mode_control (8.x-2.6). symfony_mailer_log 1.2.4 Minor update available for module symfony_mailer_log (1.2.4). cms_content_sync 3.2.1 Minor update available for module cms_content_sync (3.2.1). modal_page 5.1.9 Minor update available for module modal_page (5.1.9). drupal_cms_helper 2.1.0 Minor update available for module drupal_cms_helper (2.1.0). eca 3.1.0-rc1 First release candidate for module eca (3.1.0-rc1). book 3.0.1 Minor update available for module book (3.0.1). domain_theme_switch 3.0.0 Major update available for module domain_theme_switch (3.0.0). cms_content_sync 3.2.0 Minor update available for module cms_content_sync (3.2.0). editoria11y 3.0.0-beta6 New beta version released for module editoria11y (3.0.0-beta6). forum 1.0.6 Minor update available for module forum (1.0.6).

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
12 hours ago
Release cadence
Stability
100% stable

Releases

Version Type Release date
1.0.0 Stable Mar 24, 2026