From github , the configuration claims that I need to install
$config['sess_use_database'] = TRUE;
This is necessary to store session data in redis.
However, from CodeIgniter's Guide If $config['sess_use_database'] = TRUE; the session class will store session data in the database.
I want to understand how a database record will work, even if we set config 'sess_use_database' to true.
Secondly, the phpredis extension is required for this method.
I already have another CI redis library installed from the following github repository .
Can someone help me customize the code from ericterpstra, [File name: ci_sock / part_two / MY_Session.php] so that it can use the above library instead of phpredis?
source share