# File lib/mini_profiler/storage/file_store.rb, line 15
        def [](key)
          begin
            data = ::File.open(path(key),"rb") {|f| f.read}
            return Marshal.load data
          rescue => e
            return nil
          end
        end