Skip to content

Instantly share code, notes, and snippets.

@mjuszczak
Created October 24, 2013 19:27
Show Gist options
  • Save mjuszczak/7143459 to your computer and use it in GitHub Desktop.
Save mjuszczak/7143459 to your computer and use it in GitHub Desktop.
PostgreSQL Differences
[root@blah tmp]# diff postgresql.conf postgresql.conf.pgtune
64c64
< max_connections = 100 # (change requires restart)
---
> # max_connections = 100 # (change requires restart)
107c107
< shared_buffers = 32MB # min 128kB
---
> # shared_buffers = 32MB # min 128kB
502a503,512
> default_statistics_target = 50 # pgtune wizard 2013-10-24
> maintenance_work_mem = 416MB # pgtune wizard 2013-10-24
> constraint_exclusion = on # pgtune wizard 2013-10-24
> checkpoint_completion_target = 0.9 # pgtune wizard 2013-10-24
> effective_cache_size = 5GB # pgtune wizard 2013-10-24
> work_mem = 40MB # pgtune wizard 2013-10-24
> wal_buffers = 8MB # pgtune wizard 2013-10-24
> checkpoint_segments = 16 # pgtune wizard 2013-10-24
> shared_buffers = 1664MB # pgtune wizard 2013-10-24
> max_connections = 80 # pgtune wizard 2013-10-24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment