kazuakim / reddish
Redis clients
0.1
2017-07-17 14:05 UTC
Requires
- php: ^7.0
- ext-redis: *
This package is not auto-updated.
Last update: 2025-03-30 05:48:40 UTC
README
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
License
This software is released under the MIT License, see LICENSE.