Method: Redis#close

Defined in:
lib/redis.rb

#closeObject Also known as: disconnect!

Disconnect the client as quickly and silently as possible.

[View source] [View on GitHub]

88
89
90
91
# File 'lib/redis.rb', line 88

def close
  @client.close
  @subscription_client&.close
end