# File lib/dalli/socket.rb, line 143 def initialize(*args) raise Dalli::DalliError, "Unix sockets are not supported on Windows platform." end
# File lib/dalli/socket.rb, line 70 def self.open(path, server, options = {}) addr = Socket.pack_sockaddr_un(path) sock = start(addr) sock.options = options sock.server = server sock.kgio_wait_writable sock end