xp-forge/redis

Redis 协议

v1.1.0 2024-03-24 13:22 UTC

This package is auto-updated.

Last update: 2024-08-24 14:09:01 UTC


README

Build status on GitHub XP Framework Module BSD Licence Requires PHP 7.0+ Supports PHP 8.0+ Latest Stable Version

Redis 协议 实现。

示例

use io\redis\RedisProtocol;

$protocol= new RedisProtocol('redis://localhost');
$protocol->command('SET', 'key', 'value');

$value= $protocol->command('GET', 'key');

默认端口为 6379,可以通过以下方式更改:redis://localhost:16379。要使用身份验证,请在连接字符串中传递用户名,例如 redis://secret@localhost

发布/订阅

use io\redis\RedisProtocol;

$protocol= new RedisProtocol('redis://localhost');
$protocol->command('SUBSCRIBE', 'messages');

while ($message= $protocol->receive()) {
  Console::writeLine('Received ', $message);
}