module Redis::Commands::Connection

def select(db)

Returns:
  • (String) - `OK`

Parameters:
  • db (Integer) -- zero-based index of the DB to use (0 to 15)
def select(db)
  send_command([:select, db])
end