class MiniMime::Db::Cache

def []=(key, val)

def []=(key, val)
  rval = @hash[key] = val
  @hash.shift if @hash.length > @size
  rval
end