IConfiguration.

BTreeNodeSize(int) Method

Summary

configures the size of BTree nodes in indexes.

Syntax

void BTreeNodeSize(int size)

Remarks

configures the size of BTree nodes in indexes.

Default setting: 100
Lower values will allow a lower memory footprint and more efficient reading and writing of small slots.
Higher values will reduce the overall number of read and write operations and allow better performance at the cost of more RAM use.

This setting should be used on both client and server in client-server environment.

Parameters

Name Type Description
size int the number of elements held in one BTree node.

Return Value

Type Description
void