Change: fsync=false
Reason: Turned off fsync for performance
Platforms: All

Change: shared_buffers=10000
Reason: Increased for performance
Platforms: All

Change: checkpoint_segments = 10
Reason: The volume of data inserted into the data tables requires a 
        higher checkpoint segments setting to avoid errors in the 
        Postgres log.
Platforms: All

Change: port=@@@PGPORT@@@
Reason: Changed port to avoid conflicts with default postgresql port
        which would likely be used if an existing postgresql server 
        was present.  The installer substitutes this parameter at 
        install-time.  The default value is 9432.
Platforms: All

Change: work_mem=2048
Reason: increase sort memory to improve query performance.
Platforms: All

Change: stats_start_collector = true
        stats_block_level = true
        stats_row_level = true
        stats_reset_on_server_start = false
Reason: To collect metrics from our built-in DB instance.
Platforms: All

