Skip to main content

Module intern

Module intern 

Source
Available on crate feature worker-batch and (crate features worker-batch or worker-pool or worker) only.
Expand description

Field name interning for the batch processing engine.

Deduplicates field name strings across an entire batch. The first occurrence of a field name allocates an Arc<str>; all subsequent occurrences get a cheap Arc::clone (~2 ns). Thread-safe via DashMap – safe for concurrent access from rayon worker threads.

Structs§

FieldInterner
Concurrent field name interner.