~stub/charms/precise/postgresql/metrics

« back to all changes in this revision

Viewing changes to templates/postgresql.conf.tmpl

  • Committer: Stuart Bishop
  • Date: 2014-05-16 12:08:31 UTC
  • mfrom: (95.1.1 extra_options)
  • Revision ID: stuart@stuartbishop.net-20140516120831-jrrni5i761v8b6no
[hackedbellini] More tuning options, per https://code.launchpad.net/~hackedbellini/charms/precise/postgresql/extra_options/+merge/219057

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
{% if checkpoint_segments  != "" -%}
71
71
checkpoint_segments = {{checkpoint_segments}}
72
72
{% endif -%}
 
73
{% if checkpoint_timeout  != "" -%}
 
74
checkpoint_timeout = {{checkpoint_timeout}}
 
75
{% endif -%}
 
76
{% if fsync  != "" -%}
 
77
fsync = {{fsync}}
 
78
{% endif -%}
 
79
{% if synchronous_commit  != "" -%}
 
80
synchronous_commit = {{synchronous_commit}}
 
81
{% endif -%}
 
82
{% if full_page_writes  != "" -%}
 
83
full_page_writes = {{full_page_writes}}
 
84
{% endif -%}
73
85
 
74
86
 
75
87
#------------------------------------------------------------------------------