kazuakim/reddish

Redis clients

Installs: 6

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/kazuakim/reddish

0.1 2017-07-17 14:05 UTC

This package is not auto-updated.

Last update: 2025-11-09 09:08:08 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.