diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-08-21 16:31:23 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-08-21 16:31:23 +0000 |
commit | c2d156691292d7be998eacf5b99dce3ea3c29ab2 (patch) | |
tree | cd8f3599d4de3d781471d2811eeca7bef85567db /src | |
parent | 1837f8cbdf544c2da8f0489d9aaf3831d6a6c800 (diff) | |
download | postgresql-c2d156691292d7be998eacf5b99dce3ea3c29ab2.tar.gz postgresql-c2d156691292d7be998eacf5b99dce3ea3c29ab2.zip |
Move WAL params higher in file, next to fsync option.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/utils/misc/postgresql.conf.sample | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample index 2473c004f80..f1582d6bacb 100644 --- a/src/backend/utils/misc/postgresql.conf.sample +++ b/src/backend/utils/misc/postgresql.conf.sample @@ -61,6 +61,19 @@ # +# 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_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 + + +# # Optimizer Parameters # #enable_seqscan = true @@ -93,19 +106,6 @@ # -# 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_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 - - -# # Debug display # #silent_mode = false |