https://github.com/initphp/redissessionhandler
InitPHP Redis Session Handler
https://github.com/initphp/redissessionhandler
Last synced: 5 months ago
JSON representation
InitPHP Redis Session Handler
- Host: GitHub
- URL: https://github.com/initphp/redissessionhandler
- Owner: InitPHP
- License: mit
- Created: 2022-11-06T06:48:25.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-11-06T06:50:21.000Z (over 3 years ago)
- Last Synced: 2025-01-26T03:13:44.080Z (about 1 year ago)
- Language: PHP
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# InitPHP Redis Session Handler
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](https://github.com/InitPHP/Redis)
## Installation
```
composer require initphp/redis-session-handler
```
## Usage
```php
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
- [Muhammet ŞAFAK](https://www.muhammetsafak.com.tr) <>
## License
Copyright © 2022 [MIT License](./LICENSE)