mirror of
https://github.com/postgres/postgres.git
synced 2025-07-15 19:21:59 +03:00
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.
This commit is contained in:
@ -210,6 +210,10 @@
|
||||
#client_encoding = sql_ascii # actually, defaults to database encoding
|
||||
|
||||
# These settings are initialized by initdb -- they may be changed
|
||||
#lc_messages = 'C' # locale for system error message strings
|
||||
#lc_monetary = 'C' # locale for monetary formatting
|
||||
#lc_numeric = 'C' # locale for number formatting
|
||||
#lc_time = 'C' # locale for time formatting
|
||||
|
||||
# Other Defaults
|
||||
|
||||
|
Reference in New Issue
Block a user