Improve postgresql.conf descriptions.

This commit is contained in:
Bruce Momjian 2001-09-27 00:24:25 +00:00
parent cdd9146863
commit 19656b7445
1 changed files with 6 additions and 6 deletions

View File

@ -45,30 +45,30 @@
# Shared Memory Size # Shared Memory Size
# #
#shared_buffers = 64 # 2*max_connections, min 16 #shared_buffers = 64 # 2*max_connections, min 16
#max_fsm_relations = 100 # min 10 #max_fsm_relations = 100 # min 10, fsm is free space map
#max_fsm_pages = 10000 # min 1000 #max_fsm_pages = 10000 # min 1000, fsm is free space map
#max_locks_per_transaction = 64 # min 10 #max_locks_per_transaction = 64 # min 10
#wal_buffers = 8 # min 4 #wal_buffers = 8 # min 4
# #
# Performance # Non-shared Memory Sizes
# #
#sort_mem = 512 # min 32 #sort_mem = 512 # min 32
#vacuum_mem = 8192 # min 1024 #vacuum_mem = 8192 # min 1024
#fsync = true
# #
# Write-ahead log (WAL) # Write-ahead log (WAL)
# #
#wal_files = 0 # range 0-64 #wal_files = 0 # range 0-64
#wal_sync_method = fsync # fsync or fdatasync or open_sync or open_datasync #wal_sync_method = fsync # the default varies across platforms:
# Note: default wal_sync_method varies across platforms # # fsync, fdatasync, open_sync, or open_datasync
#wal_debug = 0 # range 0-16 #wal_debug = 0 # range 0-16
#commit_delay = 0 # range 0-100000 #commit_delay = 0 # range 0-100000
#commit_siblings = 5 # range 1-1000 #commit_siblings = 5 # range 1-1000
#checkpoint_segments = 3 # in logfile segments (16MB each), min 1 #checkpoint_segments = 3 # in logfile segments (16MB each), min 1
#checkpoint_timeout = 300 # in seconds, range 30-3600 #checkpoint_timeout = 300 # in seconds, range 30-3600
#fsync = true
# #