module Lite::Redis::TransactionHelper

Public Instance Methods

discard() click to toggle source
# File lib/lite/redis/helpers/transaction_helper.rb, line 7
def discard
  client.discard
end
exec() click to toggle source
# File lib/lite/redis/helpers/transaction_helper.rb, line 11
def exec
  client.exec
end
multi(&block) click to toggle source
# File lib/lite/redis/helpers/transaction_helper.rb, line 15
def multi(&block)
  client.multi(&block)
end
unwatch() click to toggle source
# File lib/lite/redis/helpers/transaction_helper.rb, line 23
def unwatch
  client.unwatch
end
watch(*args) click to toggle source
# File lib/lite/redis/helpers/transaction_helper.rb, line 19
def watch(*args)
  client.watch(*args)
end