Re: [sqlalchemy] Memory leaks in DecimalResultProcessor

2010-11-20 Thread Taavi Burns
On Sat, Nov 20, 2010 at 12:51 AM, Michael Bayer mike...@zzzcomputing.com wrote: oh i like that test, yeah just run the decimal processor 50 times, sure.   Yeah you can mark that with @requires.cextensions and you can push that to tip on hg.sqlalchemy.org, thanks ! Done and pushed. Thanks!

Re: [sqlalchemy] Memory leaks in DecimalResultProcessor

2010-11-20 Thread Michael Bayer
On Nov 20, 2010, at 8:43 AM, Taavi Burns wrote: On Sat, Nov 20, 2010 at 12:51 AM, Michael Bayer mike...@zzzcomputing.com wrote: oh i like that test, yeah just run the decimal processor 50 times, sure. Yeah you can mark that with @requires.cextensions and you can push that to tip on

[sqlalchemy] Memory leaks in DecimalResultProcessor

2010-11-19 Thread Taavi Burns
We recently ported our app to 0.6.4, and enabled cextensions. Our app's memory usage ballooned, and HTTP response times with it due to the extra load on the garbage collector. Turns out the DecimalResultProcessor cextension code is a bit leaky! :) I've opened ticket

Re: [sqlalchemy] Memory leaks in DecimalResultProcessor

2010-11-19 Thread Michael Bayer
On Nov 19, 2010, at 11:19 PM, Taavi Burns wrote: We recently ported our app to 0.6.4, and enabled cextensions. Our app's memory usage ballooned, and HTTP response times with it due to the extra load on the garbage collector. Turns out the DecimalResultProcessor cextension code is a bit