mirror of
https://github.com/octoleo/restic.git
synced 2024-11-10 15:21:03 +00:00
Merge pull request #746 from restic/improve-fuse-memory
fuse: Improve memory usage
This commit is contained in:
commit
439d3107f9
@ -91,6 +91,11 @@ func (f *file) getBlobAt(i int) (blob []byte, err error) {
|
|||||||
return f.blobs[i], nil
|
return f.blobs[i], nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// release earlier blobs
|
||||||
|
for j := 0; j < i; j++ {
|
||||||
|
f.blobs[j] = nil
|
||||||
|
}
|
||||||
|
|
||||||
buf := restic.NewBlobBuffer(f.sizes[i])
|
buf := restic.NewBlobBuffer(f.sizes[i])
|
||||||
n, err := f.repo.LoadBlob(restic.DataBlob, f.node.Content[i], buf)
|
n, err := f.repo.LoadBlob(restic.DataBlob, f.node.Content[i], buf)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
Loading…
Reference in New Issue
Block a user