Use faster hash map for thread results

This commit is contained in:
Filip Tibell 2024-01-31 20:30:18 +01:00
parent a5d411e95c
commit ecbd5149f8
No known key found for this signature in database
3 changed files with 11 additions and 9 deletions

1
Cargo.lock generated
View file

@ -338,6 +338,7 @@ dependencies = [
"event-listener", "event-listener",
"futures-lite", "futures-lite",
"mlua", "mlua",
"rustc-hash",
"tracing", "tracing",
"tracing-subscriber", "tracing-subscriber",
] ]

View file

@ -15,6 +15,7 @@ concurrent-queue = "2.4"
derive_more = "0.99" derive_more = "0.99"
event-listener = "4.0" event-listener = "4.0"
futures-lite = "2.2" futures-lite = "2.2"
rustc-hash = "1.1"
tracing = "0.1" tracing = "0.1"
mlua = { version = "0.9.5", features = [ mlua = { version = "0.9.5", features = [

View file

@ -1,24 +1,24 @@
#![allow(clippy::inline_always)] #![allow(clippy::inline_always)]
use std::{ use std::{cell::RefCell, rc::Rc};
cell::RefCell,
collections::{HashMap, HashSet}, // NOTE: This is the hash algorithm that mlua also uses, so we
rc::Rc, // are not adding any additional dependencies / bloat by using it.
}; use rustc_hash::{FxHashMap, FxHashSet};
use crate::{thread_id::ThreadId, util::ThreadResult}; use crate::{thread_id::ThreadId, util::ThreadResult};
#[derive(Clone)] #[derive(Clone)]
pub(crate) struct ThreadResultMap { pub(crate) struct ThreadResultMap {
tracked: Rc<RefCell<HashSet<ThreadId>>>, tracked: Rc<RefCell<FxHashSet<ThreadId>>>,
inner: Rc<RefCell<HashMap<ThreadId, ThreadResult>>>, inner: Rc<RefCell<FxHashMap<ThreadId, ThreadResult>>>,
} }
impl ThreadResultMap { impl ThreadResultMap {
pub fn new() -> Self { pub fn new() -> Self {
Self { Self {
tracked: Rc::new(RefCell::new(HashSet::new())), tracked: Rc::new(RefCell::new(FxHashSet::default())),
inner: Rc::new(RefCell::new(HashMap::new())), inner: Rc::new(RefCell::new(FxHashMap::default())),
} }
} }