mirror of
https://github.com/lune-org/mlua-luau-scheduler.git
synced 2025-04-03 18:10:55 +01:00
Use faster hash map for thread results
This commit is contained in:
parent
a5d411e95c
commit
ecbd5149f8
3 changed files with 11 additions and 9 deletions
1
Cargo.lock
generated
1
Cargo.lock
generated
|
@ -338,6 +338,7 @@ dependencies = [
|
||||||
"event-listener",
|
"event-listener",
|
||||||
"futures-lite",
|
"futures-lite",
|
||||||
"mlua",
|
"mlua",
|
||||||
|
"rustc-hash",
|
||||||
"tracing",
|
"tracing",
|
||||||
"tracing-subscriber",
|
"tracing-subscriber",
|
||||||
]
|
]
|
||||||
|
|
|
@ -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 = [
|
||||||
|
|
|
@ -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())),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue