core: Switch to parking_lot::Mutex

It's faster and we eliminate bunch of unwrap() calls.
This commit is contained in:
Pekka Enberg
2025-11-20 09:51:01 +02:00
parent 9a3cc2ac40
commit d808db6af9
25 changed files with 81 additions and 93 deletions

View File

@@ -7,7 +7,8 @@ use crate::incremental::operator::{
};
use crate::types::IOResult;
use crate::Result;
use std::sync::{Arc, Mutex};
use parking_lot::Mutex;
use std::sync::Arc;
/// Input operator - source of data for the circuit
/// Represents base relations/tables that receive external updates