Compare commits

...

3 Commits

Author SHA1 Message Date
Erik Johnston
e377e08d5a Only run on py3.7 2020-02-19 13:49:15 +00:00
Erik Johnston
c7bc2a7a64 Newsfile 2020-02-19 13:36:30 +00:00
Erik Johnston
d830146bf8 Freeze allocated objects on startup.
This may make gc go a bit faster as the gc will know things like
caches/data stores etc. are frozen without having to check.
2020-02-19 13:34:25 +00:00
2 changed files with 10 additions and 0 deletions

1
changelog.d/6953.misc Normal file
View File

@@ -0,0 +1 @@
Reduce time spent doing GC by freezing objects on startup.

View File

@@ -279,6 +279,15 @@ def start(hs, listeners=None):
setup_sentry(hs)
setup_sdnotify(hs)
# We now freeze all allocated objects in the hopes that (almost)
# everything currently allocated are things that will be used for the
# rest of time. Doing so means less work each GC (hopefully).
#
# This only works on Python 3.7
if sys.version_info >= (3, 7):
gc.collect()
gc.freeze()
except Exception:
traceback.print_exc(file=sys.stderr)
reactor = hs.get_reactor()