Buffer Allocator
Strategy for allocating buffers during compression/decompression. Allows control over memory allocation to optimize for different use cases.
Inheritors
Types
Link copied to clipboard
Allocate buffers using direct memory (default).
Link copied to clipboard
Allocate buffers from a buffer pool for reuse.
Link copied to clipboard
Allocate buffers from a specific memory zone. Use Direct for I/O operations, Heap for compute-heavy operations.
Link copied to clipboard
Allocate buffers using heap memory.