Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ jetscii = "0.5.3"
jiff = "0.2.0"
jni = { version = "0.22.0" }
kanal = "0.1.1"
lasso = { version = "0.7", features = ["multi-threaded"] }
lasso = { version = "0.7", features = ["multi-threaded", "inline-more"] }
lending-iterator = "0.1.7"
libfuzzer-sys = "0.4"
libloading = "0.8"
Expand Down
4 changes: 3 additions & 1 deletion vortex-session/src/registry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,12 @@ use lasso::Spur;
use lasso::ThreadedRodeo;
use parking_lot::RwLock;
use vortex_error::VortexExpect;
use vortex_utils::aliases::DefaultHashBuilder;
use vortex_utils::aliases::dash_map::DashMap;

/// Global string interner for [`Id`] values.
static INTERNER: LazyLock<ThreadedRodeo> = LazyLock::new(ThreadedRodeo::new);
static INTERNER: LazyLock<ThreadedRodeo<Spur, DefaultHashBuilder>> =
LazyLock::new(|| ThreadedRodeo::with_hasher(DefaultHashBuilder::default()));

/// A lightweight, copyable identifier backed by a global string interner.
///
Expand Down
Loading