forked from TrueCloudLab/restic
Merge pull request #746 from restic/improve-fuse-memory
fuse: Improve memory usage
This commit is contained in:
commit
439d3107f9
1 changed files with 5 additions and 0 deletions
|
@ -91,6 +91,11 @@ func (f *file) getBlobAt(i int) (blob []byte, err error) {
|
|||
return f.blobs[i], nil
|
||||
}
|
||||
|
||||
// release earlier blobs
|
||||
for j := 0; j < i; j++ {
|
||||
f.blobs[j] = nil
|
||||
}
|
||||
|
||||
buf := restic.NewBlobBuffer(f.sizes[i])
|
||||
n, err := f.repo.LoadBlob(restic.DataBlob, f.node.Content[i], buf)
|
||||
if err != nil {
|
||||
|
|
Loading…
Reference in a new issue