diff options
Diffstat (limited to 'db/docs/ref/upgrade.4.2/nosync.html')
-rw-r--r-- | db/docs/ref/upgrade.4.2/nosync.html | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/db/docs/ref/upgrade.4.2/nosync.html b/db/docs/ref/upgrade.4.2/nosync.html new file mode 100644 index 000000000..f4cc53206 --- /dev/null +++ b/db/docs/ref/upgrade.4.2/nosync.html @@ -0,0 +1,37 @@ +<!--$Id: nosync.so,v 1.6 2003/05/16 15:45:36 bostic Exp $--> +<!--Copyright 1997-2003 by Sleepycat Software, Inc.--> +<!--All rights reserved.--> +<!--See the file LICENSE for redistribution information.--> +<html> +<head> +<title>Berkeley DB Reference Guide: Release 4.2: Client replication environments</title> +<meta name="description" content="Berkeley DB: An embedded database programmatic toolkit."> +<meta name="keywords" content="embedded,database,programmatic,toolkit,b+tree,btree,hash,hashing,transaction,transactions,locking,logging,access method,access methods,Java,C,C++"> +</head> +<body bgcolor=white> +<a name="2"><!--meow--></a> +<table width="100%"><tr valign=top> +<td><h3><dl><dt>Berkeley DB Reference Guide:<dd>Upgrading Berkeley DB Applications</dl></h3></td> +<td align=right><a href="../upgrade.4.2/repinit.html"><img src="../../images/prev.gif" alt="Prev"></a><a href="../toc.html"><img src="../../images/ref.gif" alt="Ref"></a><a href="../upgrade.4.2/tcl.html"><img src="../../images/next.gif" alt="Next"></a> +</td></tr></table> +<p> +<h3 align=center>Release 4.2: Client replication environments</h3> +<p>In previous Berkeley DB releases, replication clients always behaved as if +<a href="../../api_c/env_set_flags.html#DB_TXN_NOSYNC">DB_TXN_NOSYNC</a> behavior was configured, that is, clients would +not write or synchronously flush their log when receiving a transaction +commit or prepare message. However, applications needing a high level +of transactional guarantee may need a write and synchronous flush on +the client. By default in the Berkeley DB 4.2 release, client database +environments write and synchronously flush their logs when receiving a +transaction commit or prepare message. Applications not needing such +a high level of transactional guarantee should use the environment's +<a href="../../api_c/env_set_flags.html#DB_TXN_NOSYNC">DB_TXN_NOSYNC</a> flag to configure their client database +environments to not do the write or flush on transaction commit, as this +will increase their performance. Regardless of the setting of the +<a href="../../api_c/env_set_flags.html#DB_TXN_NOSYNC">DB_TXN_NOSYNC</a> flag, clients will always write and flush on +transaction prepare.</p> +<table width="100%"><tr><td><br></td><td align=right><a href="../upgrade.4.2/repinit.html"><img src="../../images/prev.gif" alt="Prev"></a><a href="../toc.html"><img src="../../images/ref.gif" alt="Ref"></a><a href="../upgrade.4.2/tcl.html"><img src="../../images/next.gif" alt="Next"></a> +</td></tr></table> +<p><font size=1><a href="../../sleepycat/legal.html">Copyright (c) 1996-2003</a> <a href="http://www.sleepycat.com">Sleepycat Software, Inc.</a> - All rights reserved.</font> +</body> +</html> |