module Rafka::GenericCommands

Commands available on both {Producer} and {Consumer}.

Public Instance Methods

close() click to toggle source

Closes the connection.

@see redis.io/commands/quit

# File lib/rafka/generic_commands.rb, line 12
def close
  @redis.quit
end
ping() click to toggle source

@see redis.io/commands/ping

# File lib/rafka/generic_commands.rb, line 5
def ping
  @redis.ping
end