Skip to content

Commit e46afb5

Browse files
committed
Fix units in postgresql.conf.
1 parent 90997dd commit e46afb5

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/backend/utils/misc/postgresql.conf.sample

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@
4848
#
4949
# Shared Memory Size
5050
#
51-
#shared_buffers = 64 # 2*max_connections, min 16, 8K each
51+
#shared_buffers = 64 # 2*max_connections, min 16, typically 8K each
5252
#max_fsm_relations = 100 # min 10, fsm is free space map
5353
#max_fsm_pages = 10000 # min 1000, fsm is free space map
5454
#max_locks_per_transaction = 64 # min 10
55-
#wal_buffers = 8 # min 4, 8K each
55+
#wal_buffers = 8 # min 4, typically 8K each
5656

5757
#
5858
# Non-shared Memory Sizes
@@ -89,11 +89,11 @@
8989
#enable_mergejoin = true
9090
#enable_hashjoin = true
9191

92-
#effective_cache_size = 1000 # 8K each
93-
#random_page_cost = 4
94-
#cpu_tuple_cost = 0.01
95-
#cpu_index_tuple_cost = 0.001
96-
#cpu_operator_cost = 0.0025
92+
#effective_cache_size = 1000 # typically 8K each
93+
#random_page_cost = 4 # units are one sequential page fetch cost
94+
#cpu_tuple_cost = 0.01 # (same)
95+
#cpu_index_tuple_cost = 0.001 # (same)
96+
#cpu_operator_cost = 0.0025 # (same)
9797

9898
#default_statistics_target = 10 # range 1-1000
9999

0 commit comments

Comments
 (0)