[🚀] 64KB

This commit is contained in:
bvbej 2024-08-09 15:31:29 +08:00
parent 74e88e62d5
commit 0ce7678c21

View File

@ -260,7 +260,7 @@ func (f *Fetcher) fetchChunk(index int) (err error) {
return err
}
var buf = make([]byte, 8192)
var buf = make([]byte, 64*1024) // 64KB
// 重试10次
for i := 0; i < 10; i++ {