class GraphQL::Execution::Lazy::LazyMethodMap::ConcurrentishMap

def initialize

def initialize
  @semaphore = Mutex.new
  # Access to this hash must always be managed by the mutex
  # since it may be modified at runtime
  @storage = {}
end