Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add B+Tree Node and Leaf size fine tuning options. #38

Merged
merged 1 commit into from
Jun 16, 2023

Conversation

koculu
Copy link
Owner

@koculu koculu commented Jun 16, 2023

Available B+Tree options:

    /// <summary>
    /// Controls lock granularity of in-memory B+Tree that represents the mutable segment.
    /// </summary>
    public BTreeLockMode BTreeLockMode { get; set; } = BTreeLockMode.NodeLevelMonitor;

    /// <summary>
    /// The B+Tree node size.
    /// </summary>
    public int BTreeNodeSize { get; set; } = 128;

    /// <summary>
    /// The B+Tree leaf size.
    /// </summary>
    public int BTreeLeafSize { get; set; } = 128;

@koculu koculu added the enhancement New feature or request label Jun 16, 2023
@koculu koculu merged commit f8b01ad into main Jun 16, 2023
1 check passed
@koculu koculu deleted the add-btree-node-size-fine-tuning-options branch June 16, 2023 23:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant