Created
September 22, 2017 20:37
-
-
Save smnorris/80f1e20a207a6293fd4f4d7907683ce6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ------------------------------------------ | |
# PostgreSQL configuration file customizations | |
# ------------------------------------------ | |
#------------------------------------------------------------------------------ | |
# CONNECTIONS AND AUTHENTICATION | |
#------------------------------------------------------------------------------ | |
# - Connection Settings - | |
listen_addresses = '*' # what IP address(es) to listen on; | |
# comma-separated list of addresses; | |
# defaults to 'localhost'; use '*' for all | |
# (change requires restart) | |
#------------------------------------------------------------------------------ | |
# pgtune run on 2013-12-31 | |
# Based on 16777216 KB RAM, platform Darwin | |
#------------------------------------------------------------------------------ | |
default_statistics_target = 100 | |
maintenance_work_mem = 1GB | |
#effective_cache_size = 4GB | |
effective_cache_size = 6GB # used beacon setting rather than pgtune | |
#work_mem = 52MB | |
work_mem = 500MB # used beacon setting rather than pgtune | |
wal_buffers = 16MB | |
#shared_buffers = 1GB | |
shared_buffers = 4GB # set to 1/4 mem | |
max_connections = 50 | |
max_locks_per_transaction = 64 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment