Use JSON for the database instead of YAML. (#2189)
* Use JSON for the database instead of YAML. - JSON is much faster than YAML *and* can preserve ordered keys. - 170x+ faster than Python YAML when using unordered dicts - 55x faster than Python YAML (both using OrderedDicts) - 8x faster than C YAML (with OrderedDicts) - JSON is built into Python, unlike C YAML, so doesn't add a dependency. - Don't need human readability for the package database. - JSON requires no major changes to the code -- same object model as YAML. - add to_json, from_json methods to spec. * Add tests to ensure JSON and YAML don't need to be ordered in DB. * Write index.json first time it's not found instead of requiring reindex. * flake8 bug.
Showing
- bin/spack 0 additions, 8 deletionsbin/spack
- lib/spack/spack/database.py 51 additions, 26 deletionslib/spack/spack/database.py
- lib/spack/spack/spec.py 39 additions, 21 deletionslib/spack/spack/spec.py
- lib/spack/spack/test/database.py 1 addition, 1 deletionlib/spack/spack/test/database.py
- lib/spack/spack/test/spec_dag.py 0 additions, 28 deletionslib/spack/spack/test/spec_dag.py
- lib/spack/spack/test/spec_yaml.py 124 additions, 0 deletionslib/spack/spack/test/spec_yaml.py
- lib/spack/spack/util/spack_json.py 56 additions, 0 deletionslib/spack/spack/util/spack_json.py
- lib/spack/spack/util/spack_yaml.py 11 additions, 6 deletionslib/spack/spack/util/spack_yaml.py
Loading
Please register or sign in to comment