You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The TCP port PgDog will bind to to listen for connections.
20
+
The TCP port PgDog will bind to listen for connections.
21
21
22
22
Default: **`6432`**
23
23
@@ -29,7 +29,7 @@ Default: **`6432`**
29
29
Number of Tokio threads to spawn at pooler startup. In multi-core systems, the recommended setting is two (2) per
30
30
virtual CPU. The value `0` means to spawn no threads and use the current thread runtime (single-threaded). This option is better on IO-bound systems where multi-threading is not necessary and could even hamper performance.
31
31
32
-
Default: **`0`** (current thread runtime)
32
+
Default: **`2`**
33
33
34
34
!!! note
35
35
This setting cannot be changed at runtime.
@@ -370,6 +370,12 @@ Enable automatic conversion of single-statement write transactions to use [two-p
370
370
371
371
Default: **`true`** (enabled)
372
372
373
+
### `query_cache_limit`
374
+
375
+
Limit on the number of statements saved in the statement cache used to accelerate query parsing. The saved statements are visible by running the `SHOW QUERY_CACHE` in the [admin database](../../administration/index.md).
0 commit comments