class Roda::RodaCache

def initialize

Create a new thread safe cache.
def initialize
  @mutex = Mutex.new
  @hash = {}
end