From 5b8c32da7c816a89849f2338097019ca6bfc8864 Mon Sep 17 00:00:00 2001 From: Sungyun Hur Date: Thu, 2 Jan 2025 20:15:02 +0900 Subject: [PATCH] Update README.md (#713) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6507170f..e3ac5a63 100644 --- a/README.md +++ b/README.md @@ -103,7 +103,7 @@ A benchmark result performed on two GCP n2-highcpu-2 machines also shows that ru While auto pipelining maximizes throughput, it relys on additional goroutines to process requests and responses and may add some latencies due to goroutine scheduling and head of line blocking. -You can avoid this by setting `DisableAutoPipelining` to ture, then it will switch to connection pooling approach and serve each request with dedicated connection on the same goroutine. +You can avoid this by setting `DisableAutoPipelining` to true, then it will switch to connection pooling approach and serve each request with dedicated connection on the same goroutine. ### Manual Pipelining