[pypy-dev] Dynamic Languages Symposium: Call for Papers

2014-04-04 Thread Edd Barrett
=== Dynamic Languages Symposium 2014 October 21, 2014 Co-located with SPLASH 2014, Portland, OR, USA

[pypy-dev] Disabling garbage collection

2014-04-04 Thread Martin Koch
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

Re: [pypy-dev] Disabling garbage collection

2014-04-04 Thread Armin Rigo
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. ___