Skip to content

Instantly share code, notes, and snippets.

@danilobatistaqueiroz
Last active October 3, 2018 14:18
Show Gist options
  • Select an option

  • Save danilobatistaqueiroz/bf16c9b1ed05feeea19f927ef1edd12f to your computer and use it in GitHub Desktop.

Select an option

Save danilobatistaqueiroz/bf16c9b1ed05feeea19f927ef1edd12f to your computer and use it in GitHub Desktop.
php with redis

Configuring Redis Session Driver In CodeIgniter

Configure config.php file:

$config['sess_driver'] = 'redis';
$config['sess_cookie_name'] = 'ci_session';
$config['sess_save_path'] = 'tcp://localhost:6379';

server

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment