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
json
lca/lca_db.py
perhaps one reason LCA databases are so slow is that we're using a slow JSON parser - the stdlib one!
ref #948 #909 and oddly #737
The text was updated successfully, but these errors were encountered:
orjson and rapidjson seem to be good drop-in replacements. hyperjson uses Rust underneath. rapidjson is in conda-forge already. https://pythonspeed.com/articles/faster-json-library/
orjson
rapidjson
hyperjson
Or we could implement saving/loading in Rust... =]
Sorry, something went wrong.
I suspect that #1808 is going to be the best solution here - simply move to sqlite :)
Index
CollectionManifest
LCA_Database
Successfully merging a pull request may close this issue.
perhaps one reason LCA databases are so slow is that we're using a slow JSON parser - the stdlib one!
ref #948 #909 and oddly #737
The text was updated successfully, but these errors were encountered: