module Redis::Commands::Strings

def strlen(key)

Returns:
  • (Integer) - the length of the value stored in the key, or 0

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