I'm using codeigniter
framework.
I want to use redis
on my project.
to do this I find this library:
https://packagist.org/packages/predis/predis
I installed it with composer.
now I want to use it:
$client = new Predis\Client();
but I got this message:
Message: Class 'Predis\Client' not found
I set up these configs:
$config['composer_autoload'] = '/vendor/autoload.php';
$config['composer_autoload'] = TRUE;
my OS is windows 7. somewhere says I should install redis on my windows because I'm using localhost. yeah?