|
# -----------------------------
|
|
# PostgreSQL configuration file
|
|
# -----------------------------
|
|
#
|
|
stats_command_string = on
|
|
stats_reset_on_server_start = on
|
|
autovacuum = off # enable autovacuum subprocess?
|
|
statement_timeout = 0 # 0 is disabled, in milliseconds this one is to be thoroughly checked
|
|
#---------------------------------------------------------------------------
|
|
# LOCK MANAGEMENT !!!! this has to be checked or superseeded by pgpool implementation
|
|
#---------------------------------------------------------------------------
|
|
|
|
#deadlock_timeout = 1000 # in milliseconds
|
|
#max_locks_per_transaction = 64 # min 10
|
|
# note: each lock table slot uses ~220 bytes of shared memory, and there are
|
|
# max_locks_per_transaction * (max_connections + max_prepared_transactions)
|
|
# lock table slots.
|
|
|
|
|
|
default_with_oids = on
|