StaticId
This library provides an extremely memory-efficient implementation of StaticId for handling interned identifiers with optimal performance.
Features
StaticId: A highly optimized, interned identifier type combining a code and a venue.- Exceptional memory efficiency: Each
StaticIdis represented by a single 64-bit pointer. - Ultra-fast comparisons: Equality checks and hashing operations only compare 8 bytes, regardless of the actual string length.
- Lazy evaluation: The actual string data is only accessed during serialization.
Limitations
- The bound of
codeandvenueare fixed: For StaticIdNxM, the maximum length ofcodeandvenueis N and M respectively. The exceeding characters will be truncated. - The given structs are:
- StaticId16x0
- StaticId16x16
- StaticId16x32
- StaticId16x64
- StaticId32x0
- StaticId32x16
- StaticId32x32 (=StaticId)
- StaticId32x64
- StaticId64x0
- StaticId64x16
- StaticId64x32
- StaticId64x64
Usage
StaticId combines a Code (up to 32 bytes) and a Venue (up to 16 bytes) into an interned identifier:
use crateStaticId;
// Create from string slices
let id = from_str;
// Create from byte slices
let id_bytes = from_bytes;
assert_eq!;
assert_eq!;
// Get the length of the combined code and venue
println!; // Outputs the sum of code and venue lengths
// Get the number of unique StaticIds in the cache
println!;
// Fast equality check (compares only 8 bytes)
let id2 = from_str;
assert_eq!;
// Memory usage
println!; // Outputs: 8 bytes
Installation
Add this to your Cargo.toml:
[]
= "0.1"
Performance Considerations
- The first creation of a
StaticIdwith unique content will involve allocation and interning. Subsequent creations ofStaticIds with the same content will reuse the interned value. - While creation and interning have some overhead, subsequent operations like equality checks and hashing are extremely fast.
- The library uses a global cache for interning, which is protected by a mutex. In highly concurrent scenarios, this could potentially become a bottleneck.
- The
cache_len()method allows you to monitor the size of the intern cache, which can be useful for understanding memory usage in your application.
License
This project is licensed under [LICENSE NAME] - see the LICENSE.md file for details.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.