Skip to content

InitPHP/RedisSessionHandler

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

InitPHP Redis Session Handler

This library provides a way to keep your application's sessions on redis, not on the filesystem.

Requirements

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

About

InitPHP Redis Session Handler

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages