diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2024-06-05 20:24:41 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2024-06-05 20:24:41 +0200 |
commit | b6dbbaa3028f0da01cd4716f8d9c1c766b103cba (patch) | |
tree | 4b738f002ad2679fe16f8242b59ac42c77db12f6 | |
parent | fbff304c574971d15981a080cea8d5a710b81d4d (diff) | |
download | postgresql-b6dbbaa3028f0da01cd4716f8d9c1c766b103cba.tar.gz postgresql-b6dbbaa3028f0da01cd4716f8d9c1c766b103cba.zip |
Move new SLRU buffers GUCs to a better place in postgresql.conf.sample
They were under "File Locations", which doesn't make sense. Move them
to Resource Usage / Memory, which matches their categorization in the
source code and in the documentation.
-rw-r--r-- | src/backend/utils/misc/postgresql.conf.sample | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample index 83d5df8e460..e0567de2190 100644 --- a/src/backend/utils/misc/postgresql.conf.sample +++ b/src/backend/utils/misc/postgresql.conf.sample @@ -50,15 +50,6 @@ #external_pid_file = '' # write an extra PID file # (change requires restart) -# - SLRU Buffers (change requires restart) - - -#commit_timestamp_buffers = 0 # memory for pg_commit_ts (0 = auto) -#multixact_offset_buffers = 16 # memory for pg_multixact/offsets -#multixact_member_buffers = 32 # memory for pg_multixact/members -#notify_buffers = 16 # memory for pg_notify -#serializable_buffers = 32 # memory for pg_serial -#subtransaction_buffers = 0 # memory for pg_subtrans (0 = auto) -#transaction_buffers = 0 # memory for pg_xact (0 = auto) #------------------------------------------------------------------------------ # CONNECTIONS AND AUTHENTICATION @@ -170,6 +161,15 @@ # 0 to disable vacuum buffer access strategy; # range 128kB to 16GB +# SLRU buffers (change requires restart) +#commit_timestamp_buffers = 0 # memory for pg_commit_ts (0 = auto) +#multixact_offset_buffers = 16 # memory for pg_multixact/offsets +#multixact_member_buffers = 32 # memory for pg_multixact/members +#notify_buffers = 16 # memory for pg_notify +#serializable_buffers = 32 # memory for pg_serial +#subtransaction_buffers = 0 # memory for pg_subtrans (0 = auto) +#transaction_buffers = 0 # memory for pg_xact (0 = auto) + # - Disk - #temp_file_limit = -1 # limits per-process temp file space |