class Roda::RodaCache

def initialize_copy(other)

Create a copy of the cache with a separate mutex.
def initialize_copy(other)
  @mutex = Mutex.new
  other.instance_variable_get(:@mutex).synchronize do
    @hash = other.instance_variable_get(:@hash).dup
  end
end