mirror of
https://github.com/redis/go-redis.git
synced 2025-09-08 19:52:07 +03:00
fix(options): Add buffer sizes to failover. Update README (#3468)
* fix(options): Add buffer sizes to failover. Update README * fix(spellcheck): add KiB in wordlist * fix(comment): fix defaul value in comment * fixes #3465
This commit is contained in:
@@ -12,8 +12,8 @@ import (
|
||||
"github.com/redis/go-redis/v9/internal/util"
|
||||
)
|
||||
|
||||
// DefaultBufferSize is the default size for read/write buffers (0.5MiB)
|
||||
const DefaultBufferSize = 512 * 1024
|
||||
// DefaultBufferSize is the default size for read/write buffers (256 KiB).
|
||||
const DefaultBufferSize = 256 * 1024
|
||||
|
||||
// redis resp protocol data type.
|
||||
const (
|
||||
|
Reference in New Issue
Block a user