From: Bruce Momjian Date: Mon, 25 Apr 2005 01:42:41 +0000 (+0000) Subject: Add description for concurrent sequential scans: X-Git-Tag: REL8_1_0BETA1~920 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7a4c34c97ca546800678f65c466f4b42ae4ce7b8;p=thirdparty%2Fpostgresql.git Add description for concurrent sequential scans: > One possible implementation is to start sequential scans from the lowest > numbered buffer in the shared cache, and when reaching the end wrap > around to the beginning, rather than always starting sequential scans > at the start of the table. --- diff --git a/doc/TODO b/doc/TODO index 6019a616fc0..fca37d89922 100644 --- a/doc/TODO +++ b/doc/TODO @@ -2,7 +2,7 @@ PostgreSQL TODO List ==================== Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us) -Last updated: Sun Apr 24 08:39:04 EDT 2005 +Last updated: Sun Apr 24 21:42:27 EDT 2005 The most recent version of this document can be viewed at http://www.postgresql.org/docs/faqs.TODO.html. @@ -740,6 +740,10 @@ Cache * Allow sequential scans to take advantage of other concurrent sequentiqal scans, also called "Synchronised Scanning" + One possible implementation is to start sequential scans from the lowest + numbered buffer in the shared cache, and when reaching the end wrap + around to the beginning, rather than always starting sequential scans + at the start of the table. Vacuum ====== diff --git a/doc/src/FAQ/TODO.html b/doc/src/FAQ/TODO.html index 19ad67fbaa3..957a6176e87 100644 --- a/doc/src/FAQ/TODO.html +++ b/doc/src/FAQ/TODO.html @@ -8,7 +8,7 @@

PostgreSQL TODO List

Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
-Last updated: Sun Apr 24 08:39:04 EDT 2005 +Last updated: Sun Apr 24 21:42:27 EDT 2005

The most recent version of this document can be viewed at
http://www.postgresql.org/docs/faqs.TODO.html. @@ -677,6 +677,11 @@ first.

  • Allow sequential scans to take advantage of other concurrent sequentiqal scans, also called "Synchronised Scanning" +

    One possible implementation is to start sequential scans from the lowest + numbered buffer in the shared cache, and when reaching the end wrap + around to the beginning, rather than always starting sequential scans + at the start of the table. +

  • Vacuum