make cache arc mutex

This commit is contained in:
highflowey 2024-08-23 02:34:14 +03:30
parent cbd7cb6480
commit 16b3cde97e

View file

@ -1,13 +1,14 @@
use crate::{library::StandardLibrary, luaurc::RequireAlias};
use mlua::prelude::*;
use std::collections::HashMap;
use std::{collections::HashMap, sync::Arc};
use tokio::sync::Mutex;
/// The private struct that's stored in mlua's app data container
#[derive(Debug, Default)]
struct RequireContextData<'a> {
std: HashMap<&'a str, HashMap<&'a str, Box<dyn StandardLibrary>>>,
std_cache: HashMap<RequireAlias, LuaRegistryKey>,
cache: HashMap<&'a str, LuaRegistryKey>,
cache: Arc<Mutex<HashMap<&'a str, LuaRegistryKey>>>,
}
#[derive(Debug)]