you still have alert_rows in memory.
it would be
for row in alert_rows.exclude ...
    pass
del alert_rows
gc.collect()

On Friday, 12 February 2016 05:45:49 UTC, Jitun John wrote:
>
> I am using to remove rows...
>
> for row in alerts_rows.exclude(lambda row: row.id > 0):
>     pass
>
>
> On Friday, February 12, 2016 at 5:49:38 AM UTC+5:30, Alfonso Serra wrote:
>>
>> You can try "del rows" to remove the reference from memory before 
>> collecting 
>> del a single row raises a TypeError but del rows doesnt. It may help.
>>
>>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to