# File lib/Borges/Utilities/LRUCache.rb, line 13 def initialize(capacity = DEFAULT_CAPACITY) @capacity = capacity @table = {} @age_table = {} end