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

trie: fixes two issues in trie iterator #24539

Merged
merged 4 commits into from
Mar 15, 2022
Merged

Commits on Mar 15, 2022

  1. trie: fix the memory leak in trie iterator

    In trie iterator a batch of live nodes will be tracked and be poped
    when it's iterated. However the poped node state should be explictly
    set to nil in order to be garbage collected.
    rjl493456442 committed Mar 15, 2022
    Configuration menu
    Copy the full SHA
    8120749 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c5d78fa View commit details
    Browse the repository at this point in the history
  3. trie: fix goimport

    rjl493456442 committed Mar 15, 2022
    Configuration menu
    Copy the full SHA
    f7ef780 View commit details
    Browse the repository at this point in the history
  4. trie: remove debug line

    rjl493456442 committed Mar 15, 2022
    Configuration menu
    Copy the full SHA
    8c95e75 View commit details
    Browse the repository at this point in the history