Skip to content

Commit eb267f7

Browse files
committed
fix(comment): fix defaul value in comment
1 parent 6ae55ab commit eb267f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sentinel.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,14 +94,14 @@ type FailoverOptions struct {
9494
// Larger buffers can improve performance for commands that return large responses.
9595
// Smaller buffers can improve memory usage for larger pools.
9696
//
97-
// default: 0.5MiB (524288 bytes)
97+
// default: 256KiB (262144 bytes)
9898
ReadBufferSize int
9999

100100
// WriteBufferSize is the size of the bufio.Writer buffer for each connection.
101101
// Larger buffers can improve performance for large pipelines and commands with many arguments.
102102
// Smaller buffers can improve memory usage for larger pools.
103103
//
104-
// default: 0.5MiB (524288 bytes)
104+
// default: 256KiB (262144 bytes)
105105
WriteBufferSize int
106106

107107
PoolFIFO bool

0 commit comments

Comments
 (0)