Browse Source

[F#/Oxpecker] Simplified connection string (should benefit performance as well) (#9255)

Vladimir Shchur 11 months ago
parent
commit
4a7b80c4cd
1 changed files with 1 additions and 1 deletions
  1. 1 1
      frameworks/FSharp/oxpecker/src/App/Common.fs

+ 1 - 1
frameworks/FSharp/oxpecker/src/App/Common.fs

@@ -26,7 +26,7 @@ module Common =
     }
     }
 
 
     [<Literal>]
     [<Literal>]
-    let ConnectionString = "Server=tfb-database;Database=hello_world;User Id=benchmarkdbuser;Password=benchmarkdbpass;SSL Mode=Disable;Maximum Pool Size=1024;NoResetOnClose=true;Enlist=false;Max Auto Prepare=4;Multiplexing=true;Write Coalescing Buffer Threshold Bytes=1000"
+    let ConnectionString = "Server=tfb-database;Database=hello_world;User Id=benchmarkdbuser;Password=benchmarkdbpass;Maximum Pool Size=1024;NoResetOnClose=true;Enlist=false;Max Auto Prepare=3"
 
 
     let FortuneComparer = {
     let FortuneComparer = {
         new IComparer<Fortune> with
         new IComparer<Fortune> with