Browse Source

* added a sample postgresql.conf file containing _ONLY_ the options that we need and in default have a different setting.

git-svn-id: svn+ssh://svn.opensde.net/home/users/karasz/x5/x5dagon/trunk@7 471cc25b-571d-0410-8e29-1f4f9b506cef
master
Nagy Karoly Gabriel 18 years ago
parent
commit
eac6fe44a7
1 changed files with 20 additions and 0 deletions
  1. +20
    -0
      doc/postgresql.conf

+ 20
- 0
doc/postgresql.conf

@ -0,0 +1,20 @@
# -----------------------------
# 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

Loading…
Cancel
Save