Skip to content

Send and receive command variants

Bjorn Svensson edited this page Jan 29, 2021 · 2 revisions

Sync

  • redisClusterCommand(ctx, str)
  • redisClusterGetReply(ctx, reply);

Pipeline:

  • redisClusterAppendCommand(ctx, str)
  • redisClusterGetReply(ctx, reply);

Async:

  • redisClusterAsyncCommand(ctx, reply_fn, privdata, str)
  • call to reply_fn(ctx, reply, privdata)
Clone this wiki locally