mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-18 09:04:19 +01:00
core: Switch to parking_lot::Mutex
It's faster and we eliminate bunch of unwrap() calls.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user