# File lib/rdoc/ri/store.rb, line 55
  def initialize path, type = nil
    @dry_run  = false
    @type     = type
    @path     = path
    @encoding = nil

    @cache = {
      :ancestors        => {},
      :attributes       => {},
      :class_methods    => {},
      :encoding         => @encoding,
      :instance_methods => {},
      :modules          => [],
    }
  end