class Redis

def getdel(key)

Returns:
  • (String) - the old value stored in the key, or `nil` if the key

Parameters:
  • key (String) --
def getdel(key)
  synchronize do |client|
    client.call([:getdel, key])
  end
end