From eac6fe44a7324401baf105387cfa6f6b9a1bfb92 Mon Sep 17 00:00:00 2001 From: Nagy Karoly Gabriel Date: Thu, 14 Sep 2006 21:35:47 +0000 Subject: [PATCH] * 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 --- doc/postgresql.conf | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 doc/postgresql.conf diff --git a/doc/postgresql.conf b/doc/postgresql.conf new file mode 100644 index 0000000..8713441 --- /dev/null +++ b/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 \ No newline at end of file