module Redis::Commands::Strings

def getdel(key)

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

Parameters:
  • key (String) --
def getdel(key)
  send_command([:getdel, key])
end