Skip to content
Snippets Groups Projects
Commit c0baf86e authored by eta's avatar eta
Browse files

Merge branch 'missing_shrink_to_fit' into 'main'

dirmgr: Call shrink_to_fit on missing-microdesc hashtable

Closes #388

See merge request !399
parents 258e42ad d9c15552
No related branches found
No related tags found
1 merge request!399dirmgr: Call shrink_to_fit on missing-microdesc hashtable
......@@ -764,6 +764,13 @@ impl<DM: WriteNetDir> DirState for GetMicrodescsState<DM> {
if self.register_microdescs(microdescs) {
// Just stopped being pending.
self.mark_consensus_usable(storage)?;
// We can save a lot of ram this way, though we don't want to do it
// so often. As a compromise we call `shrink_to_fit at most twice
// per consensus: once when we're ready to use, and once when we are
// complete.
self.missing.shrink_to_fit();
} else if self.missing.is_empty() {
self.missing.shrink_to_fit();
}
Ok(changed)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment