PHP code example of invincible-tech-systems / easeampredis

1. Go to this page and download the library: Download invincible-tech-systems/easeampredis 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/ */

    

invincible-tech-systems / easeampredis example snippets



InvincibleTechSystems\EaseAmpRedis\EaseAmpRedis;


use \InvincibleTechSystems\EaseAmpRedis\CustomAmphpDnsConfigLoader;

$customAmphpDnsConfigValues = ["208.67.222.222:53", "208.67.220.220:53","8.8.8.8:53","[2001:4860:4860::8888]:53"];

$CustomAmphpDnsConfigLoader = new CustomAmphpDnsConfigLoader($customAmphpDnsConfigValues, 5000, 3);

\Amp\Dns\resolver(new \Amp\Dns\Rfc1035StubResolver(null, $CustomAmphpDnsConfigLoader));



$redisHost = "tcp://10.124.0.3:6379";
$redisConnection = new EaseAmpRedis($redisHost);



$redisHost = "tcp://localhost:6379?password=mypassword";
$redisConnection = new EaseAmpRedis($redisHost);



$namespacePrefix = "My-First-App";




$existsCheckResult = $redisConnection->exists($namespacePrefix, 'foo');



$typeCheckResult = $redisConnection->type($namespacePrefix, 'foo');



$result = $redisConnection->expire($namespacePrefix, 'foo',3000);



$result = $redisConnection->incrBy($namespacePrefix, 'foo', 3);



$result = $redisConnection->decrBy($namespacePrefix, 'foo', 3);



$result = $redisConnection->stringSet(['f33'=>'jai','h33'=>'ram']);



$result = $redisConnection->listPush('H', $namespacePrefix, 'list100', ['a','b']);



$result = $redisConnection->listPush('T', $namespacePrefix, 'list100', ['c','d']);



$result = $redisConnection->listPop('H', $namespacePrefix, 'list100');



$result = $redisConnection->listPop('T', $namespacePrefix, 'list100');



$result = $redisConnection->mapSet($namespacePrefix, 'map100', ['yoo'=>'1','moo'=>'2']);



$result = $redisConnection->get($namespacePrefix, 'f33');



$result = $redisConnection->subscribe('hello');



$result = $redisConnection->pSubscribe('h?llo');



$result = $redisConnection->publish('koo','Hello');



$result = $redisConnection->unSubscribe('koo');



$result = $redisConnection->pUnSubscribe('h?llo');