summary refs log tree commit diff
path: root/changelog.d/10712.feature (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Skip the final GC on shutdown to improve restart times (#10712)Sean2021-09-011-0/+1
Use `gc.freeze()` on exit to exclude all existing objects from the final GC. In testing, this sped up shutdown by up to a few seconds. `gc.freeze()` runs in constant time, so there is little chance of performance regression. Signed-off-by: Sean Quah <seanq@element.io>