3 个版本

0.0.4 2021 年 10 月 1 日
0.0.3 2021 年 10 月 1 日
0.0.2 2021 年 10 月 1 日

#2355数据库接口

自定义许可

7MB
400

包含 (ELF 可执行文件/库, 22MB) protoc-gen-grpc-web-1.2.1-linux-x86_64

redis-grpc

redis gRPC proxy

USAGE:
    redis-grpc [OPTIONS]

FLAGS:
        --help       Print help information
    -V, --version    Print version information

OPTIONS:
    -h, --host <HOST>    Target redis host to proxy from
    -p, --port <PORT>    Listen on port

示例

redis-grpc -h redis://localhost:10400 -p 50051

命令

支持 keys get set subscribe channel 和任意命令(响应转换为字符串)

浏览器中使用

安装

yarn install redis-grpc

或 npm install redis-grpc

基本示例

/// JavaScript / TypeScript
import { RedisGrpcPromiseClient } from 'redis-grpc/gen-js/redis_grpc_grpc_web_pb';
import { KeysRequest, SetRequest } from 'redis-grpc/gen-js/redis_grpc_pb';

const perform_set = () => {
  const client = new RedisGrpcPromiseClient("https://127.0.0.1:50051");

  /// support TypeScript
  let req = new SetRequest();

  req.setKey("key")
  req.setValue("value");

  client.set(req)
    .then(resp => console.log(resp.getResult()))
    .catch(console.error)
}

发布/订阅

/// Subscribe channels
const sub_request = new SubscribeRequest();
sub_request.setChannelsList(["channel:1", "channel:2"]);
const stream = client.subscribe(sub_request);
stream.on('data', (data: SubscribeResponse) => {
    console.log({
        message: data.getMessage(),
        channel: data.getChannel(),
    })
})

/// Publish channel
const pub_request = new PublishRequest();
pub_request.setChannel("channel:1")
await client.publish(pub_request);

许可

此存储库使用 "MIT" 许可证。请参阅 LICENSE

依赖项

~18–31MB
~456K SLoC