Redis – Transactions Multi Command

  • Post author:
  • Post category:Redis
  • Post comments:0 Comments

Redis MULTI command marks the start of a transaction block. Subsequent commands will be queued for atomic execution using EXEC.

Return Value

Simple string reply − always OK.

Syntax

Following is the basic syntax of Redis MULTI command.

redis 127.0.0.1:6379> MULTI

Leave a Reply