-
- Downloads
to_disk: Speedup directory cooking with multi-threading
Previously when cooking a directory, contents bytes were fetched sequentially which could take a good amount of time for large directories. In order to speedup the cooking process, retrieve the contents bytes in parallel with the help of the concurrent.futures module from the Python standard library which fits particularly well for making loops of I/O-bound tasks concurrent and for issuing tasks asynchronously.
Showing
- swh/vault/cookers/directory.py 3 additions, 1 deletionswh/vault/cookers/directory.py
- swh/vault/cookers/revision_flat.py 4 additions, 1 deletionswh/vault/cookers/revision_flat.py
- swh/vault/cookers/revision_gitfast.py 4 additions, 5 deletionsswh/vault/cookers/revision_gitfast.py
- swh/vault/tests/test_to_disk.py 6 additions, 4 deletionsswh/vault/tests/test_to_disk.py
- swh/vault/to_disk.py 49 additions, 44 deletionsswh/vault/to_disk.py
Please register or sign in to comment