kazuakim/reddish

0.1 2017-07-17 14:05 UTC

This package is not auto-updated.

Last update: 2024-04-14 01:20:35 UTC


README

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.