Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
09bcb248
Commit
09bcb248
authored
Feb 02, 2008
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor wordsmithing in release notes' description of asynchronous commit.
parent
19c40492
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
7 deletions
+8
-7
doc/src/sgml/release.sgml
doc/src/sgml/release.sgml
+8
-7
No files found.
doc/src/sgml/release.sgml
View file @
09bcb248
<!-- $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.57
7 2008/01/31 21:31:3
3 tgl Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.57
8 2008/02/02 23:30:2
3 tgl Exp $ -->
<!--
Typical markup:
...
...
@@ -697,13 +697,14 @@ current_date < 2017-11-17
<para>
This feature dramatically increases performance for short data-modifying
transactions.
The disadvantage is that because disk writes are
delayed, if the
operating system crashes before data is written to
the disk, committed data will be lost. This feature is useful for
transactions.
The disadvantage is that because disk writes are delayed,
if the database or
operating system crashes before data is written to
the disk, committed data will be lost.
This feature is useful for
applications that can accept some data loss. Unlike turning off
<varname>fsync</varname>, asynchronous commit does not put database
consistency at risk; the worst case is that after a database or system
crash the last few reportedly-committed transactions might be missing.
<varname>fsync</varname>, using asynchronous commit does not put
database consistency at risk; the worst case is that after a crash the
last few reportedly-committed transactions might not be committed after
all.
This feature is enabled by turning off <varname>synchronous_commit</>
(which can be done per-session or per-transaction, if some transactions
are critical and others are not).
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment