Kgio::Socket
# File lib/dalli/socket.rb, line 16 def self.open(host, port, server, options = {}) addr = Socket.pack_sockaddr_in(port, host) sock = start(addr) sock.setsockopt(Socket::IPPROTO_TCP, Socket::TCP_NODELAY, true) sock.setsockopt(Socket::SOL_SOCKET, Socket::SO_KEEPALIVE, true) if options[:keepalive] sock.options = options sock.server = server sock.kgio_wait_writable sock end
# File lib/dalli/socket.rb, line 8 def kgio_wait_readable IO.select([self], nil, nil, options[:socket_timeout]) || raise(Timeout::Error, "IO timeout") end
# File lib/dalli/socket.rb, line 12 def kgio_wait_writable IO.select(nil, [self], nil, options[:socket_timeout]) || raise(Timeout::Error, "IO timeout") end
Generated with the Darkfish Rdoc Generator 2.