2017-25 © Pedro Peláez
 

library php-redis-cache

php redis cache ,consistent hashing ,wrap phpredis

image

shendongming/php-redis-cache

php redis cache ,consistent hashing ,wrap phpredis

  • Friday, April 10, 2015
  • by shendongming
  • Repository
  • 1 Watchers
  • 0 Stars
  • 4 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

php-redis-cache

php redis cache ,consistent hashing ,wrap phpredis, (*1)

<?     

/*
   test result
   ....................................................................................................
   ..**...**...**.***...****.*...**.....**...*.*.*.*.*........*.**.*..*...*..*....**.*..**..**.***.*..*
   **..***..***..*...***....*.***..*****..***.*.*.*.*.********.*..*.**.***.**.****..*.**..**..*...*.**.
*/


include_once __DIR__ . '/vendor/autoload.php';



function test4_set1()
{
    $conf = array(
        'cluster' => array('127.0.0.1:7001', '127.0.0.1:7000'),
    );
    $cache = new RedisCache($conf);
    $t1 = microtime(1);

    for ($i = 0; $i < 10000; $i++) {
        $cache->set('qw' . $i, 'hello' . $i);
    }

    $t2 = microtime(1);

    var_dump($t2 - $t1);
    echo "\n";
}

The Versions

10/04 2015

dev-master

9999999-dev

php redis cache ,consistent hashing ,wrap phpredis

  Sources   Download

BSD

The Requires

  • php >=5.3.9

 

by Avatar shendongming