# File lib/twitter/search.rb, line 456
    def fetch(force=false)
      if @cache.nil? || force
        options = query.dup
        options[:q] = options[:q].join(" ")
        @cache = get("search", options, :format => :json)
      end
      @cache.results
    end