naroga / redis-cache
A Redis driver that implements PSR-16 (Simple Cache)
Installs: 94 818
Dependents: 1
Suggesters: 0
Security: 0
Stars: 8
Watchers: 1
Forks: 2
Open Issues: 0
Requires
- php: >=5.3.3
- predis/predis: ^1.1
- psr/simple-cache: ~1.0
Requires (Dev)
- phpunit/php-code-coverage: >=2.2.4
- phpunit/phpunit: >=3.7.38
- satooshi/php-coveralls: >=1.0.1
README
This is a simple Redis driver that implements PSR-16 compatible with PHP 5.3.3+.
Installation
Install using composer:
$ composer require naroga/redis-cache
That's it.
naroga/redis-cache
adheres to SemVer.
Usage
naroga/redis-cache
should be constructed with a predis/predis
client.
You can check Predis' documentation here.
<?php require_once "vendor/autoload.php"; use Naroga\RedisCache\Redis; use Predis\Client; $config = array( 'scheme' => 'tcp', 'host' => 'localhost', 'port' => 6379 ); $redis = new Redis(new Client($config)); if (!$redis->has('myKey')) { $redis->set('myKey', 'myValue', 1800); //Just call any PSR-16 methods here. }
License
This library is released under the MIT license. Check LICENSE.md for more information .