Drupal is a registered trademark of Dries Buytaert
Release: Leaflet 10.4.11 Minor update available for module leaflet (10.4.11). Release: Session Inspector 1.0.8 Minor update available for module session_inspector (1.0.8). Release: Migrate QA 2.0.4 Minor update available for module migrate_qa (2.0.4). Release: CKEditor Description List 3.0.0 Major update available for module ckeditor_descriptionlist (3.0.0). Release: FlowDrop 2.4.0 Minor update available for module flowdrop (2.4.0). Release: JWT Token Refresh 1.0.4 Minor update available for module jwt_token_refresh (1.0.4). Release: ConReg 1.0.0-beta1 First beta version released for module conreg (1.0.0-beta1). Release: AI Image Studio 1.0.0-beta8 New beta version released for module ai_image_studio (1.0.0-beta8). Usage Milestone: Statistics Counter Module statistics_counter crossed 1,000 active installs. Module Revived: Decoupled Router 2.0.7 Module decoupled_router updated after 11 months of inactivity (2.0.7).

This module moves Drupal's session storage from the database to Redis. This can improve performance and scalability for busy websites by reducing database traffic.

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

Tracked releases
2
Tracked since
Mar 2026
Latest release
3 weeks ago
Releases (12 mo)
2 ▲ from 0
Maintenance
Active

Releases

Version Type Release date
1.0.x-dev Dev Jul 29, 2026
1.0.0 Stable Mar 24, 2026