This class stores the cache statistics.
# File lib/storage/cache.rb, line 38 def initialize @stats = {} end
# File lib/storage/cache.rb, line 47 def each(&blk) @stats.each &blk end
# File lib/storage/cache.rb, line 42 def inc(k) @stats[k] ||= 0 @stats[k] += 1 end