# File lib/acts_as_indexed/class_methods.rb, line 54
    def index_add(record)
      return if self.aai_config.disable_auto_indexing

      build_index
      index = new_index
      index.add_record(record)
      @query_cache = {}
    end