aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2001-09-27 00:24:25 +0000
committerBruce Momjian <bruce@momjian.us>2001-09-27 00:24:25 +0000
commit19656b7445995b0aa157a7e595c61ed10d1ba378 (patch)
treef4cf75c0b7ca5e9fdc2b9a43fedf75a62d601425 /src
parentcdd914686394de4c88464a4385b36d8106f8401e (diff)
downloadpostgresql-19656b7445995b0aa157a7e595c61ed10d1ba378.tar.gz
postgresql-19656b7445995b0aa157a7e595c61ed10d1ba378.zip
Improve postgresql.conf descriptions.
Diffstat (limited to 'src')
-rw-r--r--src/backend/utils/misc/postgresql.conf.sample12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample
index b53f9c12f04..fdb7c775aed 100644
--- a/src/backend/utils/misc/postgresql.conf.sample
+++ b/src/backend/utils/misc/postgresql.conf.sample
@@ -45,30 +45,30 @@
# Shared Memory Size
#
#shared_buffers = 64 # 2*max_connections, min 16
-#max_fsm_relations = 100 # min 10
-#max_fsm_pages = 10000 # min 1000
+#max_fsm_relations = 100 # min 10, fsm is free space map
+#max_fsm_pages = 10000 # min 1000, fsm is free space map
#max_locks_per_transaction = 64 # min 10
#wal_buffers = 8 # min 4
#
-# Performance
+# Non-shared Memory Sizes
#
#sort_mem = 512 # min 32
#vacuum_mem = 8192 # min 1024
-#fsync = true
#
# Write-ahead log (WAL)
#
#wal_files = 0 # range 0-64
-#wal_sync_method = fsync # fsync or fdatasync or open_sync or open_datasync
-# Note: default wal_sync_method varies across platforms
+#wal_sync_method = fsync # the default varies across platforms:
+# # fsync, fdatasync, open_sync, or open_datasync
#wal_debug = 0 # range 0-16
#commit_delay = 0 # range 0-100000
#commit_siblings = 5 # range 1-1000
#checkpoint_segments = 3 # in logfile segments (16MB each), min 1
#checkpoint_timeout = 300 # in seconds, range 30-3600
+#fsync = true
#