class Bootsnap::LoadPathCache::Store

def transaction

def transaction
  raise(NestedTransactionError) if @txn_mutex.owned?
  @txn_mutex.synchronize do
    yield
  ensure
    commit_transaction
  end
end