class Roda::RodaPlugins::PerThreadCaching::Cache
def [](key)
def [](key) _hash[key] end
def []=(key, value)
def []=(key, value) _hash[key] = value end
def _hash
def _hash ::Thread.current[@o] ||= {} end
def initialize
Store unique symbol used to look up in the per
def initialize @o = :"roda_per_thread_cache_#{N.call}" end