fix: redis GetHashBatch检查索引是否越界
This commit is contained in:
@@ -277,6 +277,10 @@ func GetHashBatch(source string, keys []string) (map[string]map[string]string, e
|
||||
}
|
||||
|
||||
for i := 0; i < total; i += batchSize {
|
||||
// 检查索引是否越界
|
||||
if i+batchSize > total {
|
||||
batchSize = total - i
|
||||
}
|
||||
wg.Add(1)
|
||||
go func(start int) {
|
||||
ctx := context.Background()
|
||||
|
||||
Reference in New Issue
Block a user