#715: Parents probably not reclaimed due to too much caching
------------------------+---------------------------------------------------
Reporter: robertwb | Owner: somebody
Type: defect | Status: new
Priority: major | Milestone: sage-4.7.1
Component: coercion | Keywords:
Work_issues: | Upstream: N/A
Reviewer: | Author:
Merged: | Dependencies:
------------------------+---------------------------------------------------
Comment(by nbruin):
The following example also exhibits a suspicious, steady growth in memory
use. The only reason I can think of why that would happen is that
references to the created finite field remain lying around somewhere,
preventing deallocation:
{{{
sage: L=prime_range(10^8)
sage: for p in L: k=GF(p)
}}}
If you change it to the creation of a polynomial ring the memory use rises
much faster:
{{{
sage: L=prime_range(10^8)
sage: for p in L: k=GF(p)['t']
}}}
Are "unique" parents simply *never* deallocated?
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/715#comment:8>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica,
and MATLAB
--
You received this message because you are subscribed to the Google Groups
"sage-trac" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/sage-trac?hl=en.