# File lib/termtter/memory_cache.rb, line 7
    def initialize(limit = 10000)
      super(Hash.new)
      @keys = []
      @limit = limit
    end