Other: Bump max update and batch size to 256 MiB / 256 respectively

This commit is contained in:
James Houlahan
2022-11-19 16:06:25 +01:00
parent 7d84ab37f6
commit a240c4531a

View File

@ -38,8 +38,8 @@ import (
) )
const ( const (
maxUpdateSize = 1 << 25 maxUpdateSize = 1 << 27 // 128 MiB
maxBatchSize = 1 << 6 maxBatchSize = 1 << 7 // 128
) )
// doSync begins syncing the users data. // doSync begins syncing the users data.