//! Custom allocators tuned for graph database workloads.
//!
//! These allocators give you better performance than the global allocator
//! for specific patterns. Pick the right one for your use case:
//!
//! | Allocator | Best for | Trade-off |
//! | --------- | -------- | --------- |
//! | [`arena`] | MVCC versioning, bulk alloc/dealloc | Can't free individual items |
//! | [`bump`] | Temporary data within a query | Must reset to free anything |
//! | [`pool`] | Frequently reused objects | Fixed-size objects only |
//! | [`buffer`] | Large data, memory pressure | More complex API |
pub use ;
pub use ;
pub use BumpAllocator;
pub use ObjectPool;
pub use MemoryReporter;
pub use ;