Skip to content

KazuakiM/reddish

Repository files navigation

reddish

TravisCI Coveralls Scrutinizer GitHub issues Packagist Document license

Usage

This Redis client is very simple, only connection supprot!

try {
    $clients = new \Kazuakim\Reddish\Clients([
        'host' => '127.0.0.1',
        'port' => 6379
    ]);

    $clients->set('key', '1'); // normal phpredis functions.
    $clients->get('key');
} catch (\RedisException $e) {
    ...
}

Author

KazuakiM

License

This software is released under the MIT License, see LICENSE.