module Redis::Commands::Server

def time

Returns:
  • (Array) - tuple of seconds since UNIX epoch and
def time
  send_command([:time]) do |reply|
    reply&.map(&:to_i)
  end
end