# File lib/rack/session/memcache.rb, line 28
      def initialize(app, options={})
        super

        @mutex = Mutex.new
        @pool = MemCache.
          new @default_options[:memcache_server], @default_options
        raise 'No memcache servers' unless @pool.servers.any?{|s|s.alive?}
      end