增加edge-node cache.garbage命令用于清理垃圾缓存

This commit is contained in:
GoEdgeLab
2023-09-15 18:14:58 +08:00
parent bbb0c68fb0
commit a31548d26e
10 changed files with 284 additions and 66 deletions

View File

@@ -20,7 +20,7 @@ type PartialFileReader struct {
func NewPartialFileReader(fp *os.File) *PartialFileReader {
return &PartialFileReader{
FileReader: NewFileReader(fp),
rangePath: partialRangesFilePath(fp.Name()),
rangePath: PartialRangesFilePath(fp.Name()),
}
}