class Transaction
Definitions
def execute
Execute all queued commands, provided that no watched keys have been modified. It's important to note that even when a command fails, all the other commands in the queue are processed – Redis will not stop the processing of commands.
Implementation
def execute
sync.call("EXEC")
end