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

Avoid some allocations, hashes that aren't needed #1076

Merged
merged 1 commit into from
Oct 31, 2024

Commits on Oct 31, 2024

  1. Avoid some allocations, hashes that aren't needed

    This commit removes allocations in the FUSE component that don't
    need to exist and adjust the interior hashmap to use FxHashMap,
    avoiding a secure hash in favor of a fast one. Also, directories
    now keep their children in a BTreeSet so that readdir is always
    in the same order when called.
    
    Signed-off-by: Brian L. Troutwine <brian.troutwine@datadoghq.com>
    blt committed Oct 31, 2024
    Configuration menu
    Copy the full SHA
    94a0a35 View commit details
    Browse the repository at this point in the history