You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Noticed while monitoring GUI memory use with top on a large suite (1000 tasks): if I repeatedly add and remove a "View 2" panel, the resident memory size goes up significantly each time, but does not go down again when the view is removed. Not sure if this a simply a high water effect with slow garbage collection, or if we're unnecessarily hanging on to a reference to the unused data structures...
The text was updated successfully, but these errors were encountered:
What view does adding view 2 add in for? We found something nasty with one of the views several years back whereby Python just doesn't release previously allocated memory (can't find the old bug report for it though, so perhaps it got consolidated into something else).
Noticed while monitoring GUI memory use with
top
on a large suite (1000 tasks): if I repeatedly add and remove a "View 2" panel, the resident memory size goes up significantly each time, but does not go down again when the view is removed. Not sure if this a simply a high water effect with slow garbage collection, or if we're unnecessarily hanging on to a reference to the unused data structures...The text was updated successfully, but these errors were encountered: