redis: Redis commands object

Description Usage Format Examples

Description

Primarily used for pipelining, the redis object produces commands the same way that the main redis_api objects do. If passed in as arguments to the pipeline method (where supported) these commands will then be pipelined. See the redux package for an example.

Usage

1

Format

An object of class redis_commands of length 199.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
# This object creates commands in the format expected by the
# lower-level redis connection object:
redis$PING()

# For example to send two PING commands in a single transmission:
if (redux::redis_available()) {
  r <- redux::hiredis()
  r$pipeline(
    redux::redis$PING(),
    redux::redis$PING())
}

redux documentation built on Jan. 12, 2022, 5:09 p.m.