Module: Redis::Commands::Connection
- Defined in:
- lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/redis-5.0.5/lib/redis/commands/connection.rb
Instance Method Summary collapse
-
#auth(*args) ⇒ String
Authenticate to the server.
-
#echo(value) ⇒ String
Echo the given string.
-
#ping(message = nil) ⇒ String
Ping the server.
-
#quit ⇒ String
Close the connection.
-
#select(db) ⇒ String
Change the selected database for the current connection.
Instance Method Details
#auth(*args) ⇒ String
Authenticate to the server.
12 13 14 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/redis-5.0.5/lib/redis/commands/connection.rb', line 12 def auth(*args) send_command([:auth, *args]) end |
#echo(value) ⇒ String
Echo the given string.
28 29 30 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/redis-5.0.5/lib/redis/commands/connection.rb', line 28 def echo(value) send_command([:echo, value]) end |
#ping(message = nil) ⇒ String
Ping the server.
20 21 22 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/redis-5.0.5/lib/redis/commands/connection.rb', line 20 def ping( = nil) send_command([:ping, ].compact) end |
#quit ⇒ String
Close the connection.
43 44 45 46 47 48 49 50 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/redis-5.0.5/lib/redis/commands/connection.rb', line 43 def quit synchronize do |client| client.call_v([:quit]) rescue ConnectionError ensure client.close end end |
#select(db) ⇒ String
Change the selected database for the current connection.
36 37 38 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/redis-5.0.5/lib/redis/commands/connection.rb', line 36 def select(db) send_command([:select, db]) end |