initphp / redis-session-handler
PHP Redis Session Handler
1.0
2022-11-06 06:49 UTC
Requires
- php: >=7.4
- ext-redis: *
- initphp/redis: ^1.0
This package is not auto-updated.
Last update: 2024-11-04 16:12:07 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