-
Notifications
You must be signed in to change notification settings - Fork 249
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MultiProgress: unclear if finished bars needs to be manually removed #419
Comments
|
Exposing API to shrink that thing seems overkill. We could do something where, if the free set is both at least, say, 32 elements and more than half of the active set, we defragment the thing. |
Actually I take back what I said. Even if you drop/finish the |
So if a thread creates and attaches a
|
Sorry I never replied to this. What you can do is clone the |
To the original point of the issue: indicatif (for the past year or so) has been pruning bars from |
I have a long running app using a
MultiProgress
to which variousProgressBar
are regularly added. It's not clear to me from the doc if I have to manually remove those from the multi once they are done or if callingfinish_and_clear()
is enough.I want to be sure that memory won't keep growing forever if I keep adding and finishing bars without removing them.
The text was updated successfully, but these errors were encountered: