Expand description
Global string pool system for memory optimization
This module provides a global string interning system to reduce memory usage
by sharing common strings across the application. All string fields in
AllocationInfo and related structures use Arc<str>
backed by this pool.
Structs§
- String
Pool - Global string pool for memory-efficient string storage
- String
Pool Stats - Statistics about string pool usage
Functions§
- get_
string_ pool_ stats - Get statistics about the global string pool
- intern_
string - Intern a string using the global string pool