# File lib/moped/cluster.rb, line 102
    def initialize(hosts, options)
      @seeds = hosts.map{ |host| Node.new(host, options) }
      @peers = []
      @options = options
    end