Re: [pypy-dev] Pypy garbage collection

2014-03-12 Thread Maciej Fijalkowski
On Thu, Mar 13, 2014 at 12:06 AM, Martin Koch wrote: > Hi List > > I'm running a server (written in python, executed with pypy) that holds a > large graph (55GB, millions of nodes and edges) in memory and responds to > queries by traversing the graph.The graph is mutated a few times a second, > an

[pypy-dev] Pypy garbage collection

2014-03-12 Thread Martin Koch
Hi List I'm running a server (written in python, executed with pypy) that holds a large graph (55GB, millions of nodes and edges) in memory and responds to queries by traversing the graph.The graph is mutated a few times a second, and there are hundreds of read-only requests a second. My problem