# File lib/Borges/Utilities/LRUCache.rb, line 37
  def store(object)
    key = next_key
    self[key] = object
    return key
  end