From: Bruce Momjian Date: Mon, 5 Nov 2007 17:35:38 +0000 (+0000) Subject: Document that syncronhous commit can be turned off in a single X-Git-Tag: REL8_3_BETA3~128 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c00055ea809fbc805fffcd372f3a6f12f46f6790;p=postgresql Document that syncronhous commit can be turned off in a single multi-statement transaction. --- diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index 0d11754905..f070290f48 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -1,4 +1,4 @@ - + Server Configuration @@ -1318,7 +1318,9 @@ SET ENABLE_SEQSCAN TO OFF; In many situations, turning off for noncritical transactions can provide much of the potential performance benefit of turning off fsync, without - the attendant risks of data corruption. + the attendant risks of data corruption. It can even be turned + off in a single multi-statement transaction using SET + LOCAL synchronous_commit TO OFF;.