2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-22 18:45:09 +00:00
restic/changelog/0.13.0_2022-03-26/pull-3508

11 lines
456 B
Plaintext
Raw Normal View History

Enhancement: Cache blobs read by the `dump` command
2021-09-12 15:52:34 +00:00
When dumping a file using the `dump` command, restic did not cache blobs in any
way, so even consecutive runs of the same blob were loaded from the repository
again and again, slowing down the dump.
2021-09-12 15:52:34 +00:00
Now, the caching mechanism already used by the `fuse` command is also used by
the `dump` command. This makes dumping much faster, especially for sparse files.
https://github.com/restic/restic/pull/3508