Sha256: 8e5645aee69eedc005505b28141007dd727bc71cc895f530b4be202e131041b5
Contents?: true
Size: 1.32 KB
Versions: 6
Compression:
Stored size: 1.32 KB
Contents
# frozen_string_literal: true class Redis module Commands module Connection # Authenticate to the server. # # @param [Array<String>] args includes both username and password # or only password # @return [String] `OK` # @see https://redis.io/commands/auth AUTH command def auth(*args) send_command([:auth, *args]) end # Ping the server. # # @param [optional, String] message # @return [String] `PONG` def ping(message = nil) send_command([:ping, message].compact) end # Echo the given string. # # @param [String] value # @return [String] def echo(value) send_command([:echo, value]) end # Change the selected database for the current connection. # # @param [Integer] db zero-based index of the DB to use (0 to 15) # @return [String] `OK` def select(db) synchronize do |client| client.db = db client.call([:select, db]) end end # Close the connection. # # @return [String] `OK` def quit synchronize do |client| begin client.call([:quit]) rescue ConnectionError ensure client.disconnect end end end end end end
Version data entries
6 entries across 6 versions & 2 rubygems