class Roda::RodaCache

def [](key)

Make getting value from underlying hash thread safe.
def [](key)
  @mutex.synchronize{@hash[key]}
end