From ae7d3a30c8df5818bb56ad3a94826a1ebd45e012 Mon Sep 17 00:00:00 2001 From: Shreck Ye Date: Tue, 19 Nov 2024 04:47:02 +0800 Subject: [PATCH] Use the default `pipeliningLimit` in the "vertx-web-kotlinx" portion for testing purposes The single query test performance seems not affected. --- .../Kotlin/vertx-web-kotlinx/src/main/kotlin/MainVerticle.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frameworks/Kotlin/vertx-web-kotlinx/src/main/kotlin/MainVerticle.kt b/frameworks/Kotlin/vertx-web-kotlinx/src/main/kotlin/MainVerticle.kt index 2bd701fa083..4dfd3f6f49e 100644 --- a/frameworks/Kotlin/vertx-web-kotlinx/src/main/kotlin/MainVerticle.kt +++ b/frameworks/Kotlin/vertx-web-kotlinx/src/main/kotlin/MainVerticle.kt @@ -56,7 +56,7 @@ class MainVerticle(val hasDb: Boolean) : CoroutineVerticle(), CoroutineRouterSup user = "benchmarkdbuser", password = "benchmarkdbpass", cachePreparedStatements = true, - pipeliningLimit = 100000 + //pipeliningLimit = 100000 ) ).coAwait()