diff options
author | Bruce Momjian <bruce@momjian.us> | 2005-07-30 15:17:26 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2005-07-30 15:17:26 +0000 |
commit | 1f54d43075d8c457935cd9fe8adfea949104995d (patch) | |
tree | 1dae9895c68da69a255b08d5e5f349ea8cdc0a3f /src/backend/utils/misc/postgresql.conf.sample | |
parent | b2b6548c79eb63faf1d0939893b3bf183d5410a1 (diff) | |
download | postgresql-1f54d43075d8c457935cd9fe8adfea949104995d.tar.gz postgresql-1f54d43075d8c457935cd9fe8adfea949104995d.zip |
Add GUC variables to control keep-alive times for idle, interval, and
count.
Oliver Jowett
Diffstat (limited to 'src/backend/utils/misc/postgresql.conf.sample')
-rw-r--r-- | src/backend/utils/misc/postgresql.conf.sample | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample index db8c28814db..5eabe09552e 100644 --- a/src/backend/utils/misc/postgresql.conf.sample +++ b/src/backend/utils/misc/postgresql.conf.sample @@ -70,6 +70,11 @@ #krb_caseins_users = off #krb_srvname = 'postgres' +# - TCP Keepalives - +# see 'man 7 tcp' for details +#tcp_keepalives_idle = 0 # TCP_KEEPIDLE, in seconds; 0 uses the system default. +#tcp_keepalives_interval = 0 # TCP_KEEPINTVL, in seconds; 0 uses the system default. +#tcp_keepalives_count = 0 # TCP_KEEPCNT, in seconds; 0 uses the system default. #--------------------------------------------------------------------------- # RESOURCE USAGE (except WAL) |