You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the burst-threshold is set to smaller than 65536, the hat-trie behaves normally, and memory usage is 32%. However, when set to 65536 or larger, it causes my process to coredump, with memory usage only at 24%. Why is that?
The text was updated successfully, but these errors were encountered:
There's effectively a limit of 65535 due to the IndexSizeT of uint16 used for the array_hash of the htrie_hash.
I added a check in commit 611bdcc. Previously, an exception should have been thrown if we were inserting more than 65535 elements. Did you get a segfault instead?
When the burst-threshold is set to smaller than 65536, the hat-trie behaves normally, and memory usage is 32%. However, when set to 65536 or larger, it causes my process to coredump, with memory usage only at 24%. Why is that?
The text was updated successfully, but these errors were encountered: