# File lib/thread_safe/cache.rb, line 117
    def size
      count = 0
      each_pair {|k, v| count += 1}
      count
    end