]> granicus.if.org Git - postgresql/commit
The default values for shared_buffers and max_connections are now 1000
authorTom Lane <tgl@sss.pgh.pa.us>
Mon, 14 Jul 2003 20:00:23 +0000 (20:00 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Mon, 14 Jul 2003 20:00:23 +0000 (20:00 +0000)
commitde98a7e23a193a9c9a6505540ad03c5b4a57f345
treeef7cc573f950bc10272d52c53f83aa19730f8328
parent8460000069a14c44fef3177815c1bf2ad21c2fc9
The default values for shared_buffers and max_connections are now 1000
and 100 respectively, if the platform will allow it.  initdb selects
values that are not too large to allow the postmaster to start, and
places these values in the installed postgresql.conf file.  This allows
us to continue to start up out-of-the-box on platforms with small SHMMAX,
while having somewhat-realistic default settings on platforms with
reasonable SHMMAX.  Per recent pghackers discussion.
doc/src/sgml/runtime.sgml
src/backend/port/sysv_shmem.c
src/backend/utils/init/postinit.c
src/backend/utils/misc/postgresql.conf.sample
src/bin/initdb/initdb.sh