load_cache()
Loads cache file for this store
# File lib/rdoc/ri/store.rb, line 119 def load_cache open cache_path, 'rb' do |io| @cache = Marshal.load io.read end rescue Errno::ENOENT end