class RDoc::RI::Store

def load_cache

def load_cache
  open cache_path, 'rb' do |io|
    @cache = Marshal.load io.read
  end
rescue Errno::ENOENT
end