This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Description
cc @erikjohnston, regarding the allocation mysteries where python is taking up more memory than it's actually using for objects.
According to @richvdh, the only reason why we're currently using manual GC is because python 2 didn't support gc.callbacks, using this to catch metrics instead might slightly improve performance elsewhere, such as in memory pressure and CPU usage, as we're giving cPython the reigns of the garbage collector again.
This might need some performance testing.