===
Dynamic Languages Symposium 2014
October 21, 2014
Co-located with SPLASH 2014, Portland, OR, USA
Hi List
Is there a simple way of building a version of pypy where garbage
collection of the old generation is disabled? I have a very large, fairly
static graph in memory, and I would rather not traverse it all on major
collections.
I don't care too much if there are leaks, since my application r
Hi Martin,
On 4 April 2014 15:05, Martin Koch wrote:
> Is there a simple way of building a version of pypy where garbage collection
> of the old generation is disabled?
It should be enough to tweak some environment variables. Try to set
PYPY_GC_MIN=99GB
A bientôt,
Armin.
___