We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
shelve
If the connected components dict in clustering.union_find() is running us out of memory, maybe we can use https://docs.python.org/3/library/shelve.html as a disk-based dictionary?
clustering.union_find()
The text was updated successfully, but these errors were encountered:
i think it's worth a look, but when we looked at shelve before for other purposes in the library it was surprisingly slow.
Sorry, something went wrong.
Good to know. I'd say reopen if we add profiling as in #967 and see that this actually is a bottleneck.
No branches or pull requests
If the connected components dict in
clustering.union_find()
is running us out of memory, maybe we can use https://docs.python.org/3/library/shelve.html as a disk-based dictionary?The text was updated successfully, but these errors were encountered: