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
Requires
- php: ^7.0
- ext-redis: *
This package is not auto-updated.
Last update: 2025-11-09 09:08:08 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.