Add URL for:
authorBruce Momjian
Mon, 2 Apr 2007 22:49:03 +0000 (22:49 +0000)
committerBruce Momjian
Mon, 2 Apr 2007 22:49:03 +0000 (22:49 +0000)
* Improve speed with indexes

  For large table adjustments during VACUUM FULL, it is faster to cluster
  or reindex rather than update the index.  Also, index updates can bloat
  the index.

>
>   http://archives.postgresql.org/pgsql-hackers/2007-03/msg00024.php

doc/TODO
doc/src/FAQ/TODO.html

index 871224f562f36c572f60fe6e470074b3533f1214..aadda4da142a4bca70d591dea747040846f015a1 100644 (file)
--- a/doc/TODO
+++ b/doc/TODO
@@ -2,7 +2,7 @@
 PostgreSQL TODO List
 ====================
 Current maintainer:    Bruce Momjian ([email protected])
-Last updated:      Mon Apr  2 18:46:07 EDT 2007
+Last updated:      Mon Apr  2 18:48:47 EDT 2007
 
 The most recent version of this document can be viewed at
 http://www.postgresql.org/docs/faqs.TODO.html.
@@ -1169,9 +1169,11 @@ Vacuum
 
 * Improve speed with indexes
 
-  For large table adjustments during VACUUM FULL, it is faster to 
-  reindex rather than update the index.  Also, index updates can
-  bloat the index.
+  For large table adjustments during VACUUM FULL, it is faster to cluster
+  or reindex rather than update the index.  Also, index updates can bloat
+  the index.
+
+  http://archives.postgresql.org/pgsql-hackers/2007-03/msg00024.php
 
 * Reduce lock time during VACUUM FULL by moving tuples with read lock,
   then write lock and truncate table
index 5f62745faa2a4f8c80999a821f246bd712206f87..873f38c4ccb81eadf20ff06225d90abd964e89e9 100644 (file)
@@ -8,7 +8,7 @@
 
 

PostgreSQL TODO List

 

Current maintainer:     Bruce Momjian ([email protected])

-Last updated:           Mon Apr  2 18:46:07 EDT 2007
+Last updated:           Mon Apr  2 18:48:47 EDT 2007
 

 

The most recent version of this document can be viewed at

 http://www.postgresql.org/docs/faqs.TODO.html.
@@ -1037,9 +1037,11 @@ first.  There is also a developer's wiki at
 
 
       
  • Improve speed with indexes
  • -

      For large table adjustments during VACUUM FULL, it is faster to 

    -  reindex rather than update the index.  Also, index updates can
    -  bloat the index.
    +

      For large table adjustments during VACUUM FULL, it is faster to cluster

    +  or reindex rather than update the index.  Also, index updates can bloat
    +  the index.
    +

    +

      http://archives.postgresql.org/pgsql-hackers/2007-03/msg00024.php

     

       
  • Reduce lock time during VACUUM FULL by moving tuples with read lock,
  •    then write lock and truncate table