基于swoole扩展的异步redis客户端

https://github.com/swoole/redis-async

内部有连接池的设计,它会自动选择空闲的连接,如果没有空闲连接则自动创建一个新的连接。支持绝大部分redis指令。

使用方法举例:

require __DIR__.'/src/Swoole/Async/RedisClient.php';
$redis = new Swoole\Async\RedisClient('127.0.0.1');

$redis->select('2', function () use ($redis) {
    $redis->set('key', 'value-rango', function ($result, $success) use ($redis) {
        for ($i = 0; $i < 3; $i++) {
            $redis->get('key', function ($result, $success) {
                echo "redis ok:\n";
                var_dump($success, $result);
            });
        }
    });
});



你可能感兴趣的:(基于swoole扩展的异步redis客户端)