Constant keyvalint::TABLE_FULL_SIZE

source ·
pub const TABLE_FULL_SIZE: usize = _; // 1_006_632_960usize
Expand description

The recommended size of a table.

This is an approximate size. This constant isn’t intended to be a maximum size, but rather a size that, once exceeded, will cause the table to return a TableFull error. The general pattern is that the block will exceed this size by up to one key-value pair, so subtract some slop. 64MiB is overkill, but will last for awhile.