From d5ef4e68c1c0aecf000b427e621745cce45f433d Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Mon, 5 Nov 2007 17:35:38 +0000 Subject: [PATCH] Document that syncronhous commit can be turned off in a single multi-statement transaction. --- doc/src/sgml/config.sgml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index b3a068f441..9acc919532 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -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;. -- 2.39.5