class Dalli::Socket::SSLSocket

Wraps the below TCP socket class in the case where the client has configured a TLS/SSL connection between Dalli and the Memcached server.

Public Instance Methods

options() click to toggle source
# File lib/dalli/socket.rb, line 66
def options
  io.options
end
wait_readable(timeout = nil) click to toggle source
# File lib/dalli/socket.rb, line 71
def wait_readable(timeout = nil)
  to_io.wait_readable(timeout)
end
wait_writable(timeout = nil) click to toggle source
# File lib/dalli/socket.rb, line 77
def wait_writable(timeout = nil)
  to_io.wait_writable(timeout)
end