Re: [SQLObject] problem clearing the cache

2008-08-19 Thread Oleg Broytmann
On Tue, Aug 19, 2008 at 11:07:40PM +0200, sophana wrote: > I need to iterate over all the rows to check something. > When doing this, I saw memory consumption raising infinitely. > Then I remembered that sqlobjects caches everything. > Then I tried: > > for a in SOClass.select(): > connection.ca

[SQLObject] problem clearing the cache

2008-08-19 Thread sophana
Hi I need to iterate over all the rows to check something. When doing this, I saw memory consumption raising infinitely. Then I remembered that sqlobjects caches everything. Then I tried: for a in SOClass.select(): connection.cache.clear() memory is still growing. Is it a python problem or a S