Контакты
email:
skype:
© 2008 – 2021
Вернуться
» » » php-redis-react - клиент для асинхронной работы с redis

php-redis-react - клиент для асинхронной работы с redis


Пример кода
$loop = React\EventLoop\Factory::create();
$factory = new Factory($loop);

$factory->createClient('localhost:6379')->then(function (Client $client) use ($loop) {
    $client->set('greeting', 'Hello world');
    $client->append('greeting', '!');

    $client->get('greeting')->then(function ($greeting) {
        // Hello world!
        echo $greeting . PHP_EOL;
    });

    $client->incr('invocation')->then(function ($n) {
        echo 'This is invocation #' . $n . PHP_EOL;
    });

    // end connection once all pending requests have been resolved
    $client->end();
});

$loop->run();

https://github.com/clue/php-redis-react
Оставить комментарий
Вверх