1. Go to this page and download the library: Download 00f100/fcphp-redis 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/ */
00f100 / fcphp-redis example snippets
/**
* Method to construct instance of Redis
*
* @param string $host Host to connect Redis server
* @param string $port Port of Redis server
* @param string $password Password of Redis server
* @param int $timeout Timeout of try connect
* @return void
*/
$redis = RedisFacade::getInstance(string $host, string $port, string $password = null, int $timeout = 100);
use FcPhp\Redis\Facades\RedisFacade;
$redis = RedisFacade::getInstance('127.0.0.1', '6379', null, 100);
$redis->set('key', 'content');
echo $redis->get('key');
// Print: content
print_r($redis->keys('*'));
// List all keus into array
$redis->delete('key');
// Delete key
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.