PHP code example of kazuakim / reddish
1. Go to this page and download the library: Download kazuakim/reddish library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
kazuakim / reddish example snippets
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) {
...
}