From 39385b943f551d4d26ef5e449ffb12e8725c5a6b Mon Sep 17 00:00:00 2001
From: GradedJestRisk <37769607+GradedJestRisk@users.noreply.github.com>
Date: Fri, 1 Nov 2024 23:12:16 +0100
Subject: [PATCH] doc: replace connexion pool size by database connexion to
avoid confusion (#2251)
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index a63a13c5..3b06c661 100644
--- a/README.md
+++ b/README.md
@@ -103,7 +103,7 @@ The customer's environment imposed a high cost of new connection acquisition, an
#### You're [probably] doing it wrong
-AKA *"What you probably didn't know about connection pool sizing"*. Watch a video from the Oracle Real-world Performance group, and learn about why connection pools do not need to be sized as large as they often are. In fact, oversized connection pools have a clear and demonstrable *negative* impact on performance; a 50x difference in the case of the Oracle demonstration. [Read on to find out](https://github.com/brettwooldridge/HikariCP/wiki/About-Pool-Sizing).
+AKA *"What you probably didn't know about connection pool sizing"*. Watch a video from the Oracle Real-world Performance group, and learn about why database connections do not need to be so numerous as they often are. In fact, too many connections have a clear and demonstrable *negative* impact on performance; a 50x difference in the case of the Oracle demonstration. [Read on to find out](https://github.com/brettwooldridge/HikariCP/wiki/About-Pool-Sizing).
#### WIX Engineering Analysis