mirror of
https://github.com/octoleo/restic.git
synced 2024-11-22 21:05:10 +00:00
fuse: Improve memory usage
Discard blobs that aren't in use any more. This greatly reduces memory usage and will probably only trigger on sequential read (e.g. for restore via fuse). Closes #480
This commit is contained in:
parent
17d7af6ccc
commit
afc593676a
@ -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 New Issue
Block a user