memmapThreshold property

  1. @TagNumber(5)
Int64 get memmapThreshold

Maximum size (in kilobytes) of vectors to store in-memory per segment. Segments larger than this threshold will be stored as read-only memmapped file.

Memmap storage is disabled by default, to enable it, set this threshold to a reasonable value.

To disable memmap storage, set this to 0.

Note: 1Kb = 1 vector of size 256

Implementation

@$pb.TagNumber(5)
$fixnum.Int64 get memmapThreshold => $_getI64(4);
  1. @TagNumber(5)
set memmapThreshold (Int64 v)

Implementation

@$pb.TagNumber(5)
set memmapThreshold($fixnum.Int64 v) { $_setInt64(4, v); }