Optimizing Postgresql
Thursday, February 24th, 2005Rene discovered nice options in postgresql.conf
# – Planner Method Enabling -
#enable_hashagg = true
#enable_hashjoin = true
#enable_indexscan = true
#enable_mergejoin = true
#enable_nestloop = true
#enable_seqscan = true
enable_seqscan = false
#enable_sort = true
#enable_tidscan = true
(more…)