Vdr.RedisStream.ReplicaCommand (veidrodelis v0.1.6)

Copy Markdown View Source

Represents a Redis command in a replication stream context.

This struct encapsulates all information about a command being processed during replication, including the database number, the parsed command, the raw generic command, affected keys, and a context map for filters and callbacks.

Summary

Types

t()

@type t() :: %Vdr.RedisStream.ReplicaCommand{
  affected_keys: [binary()],
  command: tuple(),
  context: map(),
  db: non_neg_integer(),
  raw_command: tuple()
}