Expand description
Custom memory allocators for graph query execution
This module provides specialized allocators:
- Arena allocation for query-scoped memory
- Object pooling for frequent allocations
- NUMA-aware allocation for distributed systems
Structsยง
- Arena
Allocator - Arena allocator for query execution All allocations are freed together when the arena is dropped
- Numa
Allocator - NUMA-aware allocator for multi-socket systems
- Object
Pool - Object pool for reducing allocation overhead
- Pooled
Object - RAII wrapper for pooled objects
- Query
Arena - Query-scoped arena that resets after each query