|
VLink
2.1.0
A high-performance communication middleware
|
Constructor configuration for tiers, preallocation and cross-shard batch size. More...
#include <memory_pool.h>
Public Attributes | |
| std::vector< Tier > | tiers |
| Tier descriptors; empty or all-sentinel selects bypass mode. More... | |
| bool | prealloc {false} |
When true, eagerly fill every managed tier to its quota. More... | |
| size_t | batch_size {16U} |
Maximum nodes transferred per cross-shard steal; 0 uses 16. More... | |
Constructor configuration for tiers, preallocation and cross-shard batch size.
prealloc controls whether the constructor immediately fills every tier to its full blocks_per_chunk quota. Default false keeps the lazy growth path. Preallocation is best effort; any tier whose ::operator new fails stays in lazy state and the constructor continues. batch_size limits how many nodes an empty shard transfers from another shard while holding its short free-list lock; 0 falls back to the default 16.
| size_t vlink::MemoryPool::Config::batch_size {16U} |
Maximum nodes transferred per cross-shard steal; 0 uses 16.
| bool vlink::MemoryPool::Config::prealloc {false} |
When true, eagerly fill every managed tier to its quota.
| std::vector<Tier> vlink::MemoryPool::Config::tiers |
Tier descriptors; empty or all-sentinel selects bypass mode.