shendongming / php-redis-cache
php redis cache ,consistent hashing ,wrap phpredis
Installs: 8
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 1
Open Issues: 0
pkg:composer/shendongming/php-redis-cache
Requires
- php: >=5.3.9
This package is not auto-updated.
Last update: 2026-01-17 22:37:54 UTC
README
php redis cache ,consistent hashing ,wrap phpredis
<? /* 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"; }