# File lib/Borges/Utilities/LRUCache.rb, line 20 def initialize(capacity = DEFAULT_CAPACITY) @capacity = capacity @table = {} @age_array = [] end