class Roda::RodaPlugins::PerThreadCaching::Cache

def [](key)

Return the current thread's cached value.
def [](key)
  _hash[key]
end

def []=(key, value)

Set the current thread's cached value.
def []=(key, value)
  _hash[key] = value
end

def _hash

The current thread's cache.
def _hash
  ::Thread.current[@o] ||= {}
end

def initialize

thread caches.
Store unique symbol used to look up in the per
def initialize
  @o = :"roda_per_thread_cache_#{N.call}"
end