class Kramdown::Utils::LRUCache

def []=(key, value)

Stores the +value+ under the +key+.
def []=(key, value)
  @cache.delete(key)
  @cache[key] = value
  @cache.shift if @cache.length > @size
end