initphp / redis-session-handler
PHP Redis Session Handler
Installs: 5
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/initphp/redis-session-handler
Requires
- php: >=7.4
- ext-redis: *
- initphp/redis: ^1.0
This package is not auto-updated.
Last update: 2025-10-06 20:45:25 UTC
README
This library provides a way to keep your application's sessions on redis, not on the filesystem.
Requirements
- PHP 7.4 or later
- PHP Redis Extension
- InitPHP Redis Library
Installation
composer require initphp/redis-session-handler
Usage
require_once "vendor/autoload.php"; $redis = new \InitPHP\Redis\Redis([ 'host' => '127.0.0.1', 'password' => null, 'port' => 6379, 'timeout' => 0, 'database' => 0, ]); $sessionHandler = new InitPHP\RedisSessionHandler\Handler($redis); session_set_save_handler($sessionHandler, true); session_start(); // You can use the $_SESSION global.
Credits
License
Copyright © 2022 MIT License