|
8 | 8 | <body bgcolor="#FFFFFF" text="#000000" link="#FF0000" vlink="#A00000" alink="#0000FF">
|
9 | 9 | <h1><a name="section_1">PostgreSQL TODO List</a></h1>
|
10 | 10 | <p>Current maintainer: Bruce Momjian (<a href="mailto:pgman@candle.pha.pa.us">pgman@candle.pha.pa.us</a>)<br/>
|
11 |
| -Last updated: Thu Dec 1 17:12:27 EST 2005 |
| 11 | +Last updated: Thu Dec 1 17:30:23 EST 2005 |
12 | 12 | </p>
|
13 | 13 | <p>The most recent version of this document can be viewed at<br/>
|
14 | 14 | <a href="http://www.postgresql.org/docs/faqs.TODO.html">http://www.postgresql.org/docs/faqs.TODO.html</a>.
|
@@ -778,10 +778,14 @@ <h1><a name="section_15">Cache Usage</a></h1>
|
778 | 778 | </li><li>Allow data to be pulled directly from indexes
|
779 | 779 | <p> Currently indexes do not have enough tuple visibility information
|
780 | 780 | to allow data to be pulled from the index without also accessing
|
781 |
| - the heap. One way to allow this is to set a bit to index tuples |
| 781 | + the heap. One way to allow this is to set a bit on index tuples |
782 | 782 | to indicate if a tuple is currently visible to all transactions
|
783 | 783 | when the first valid heap lookup happens. This bit would have to
|
784 |
| - be cleared when a heap tuple is expired. |
| 784 | + be cleared when a heap tuple is expired. Another idea is to maintain |
| 785 | + a bitmap of heap pages where all rows are visible to all backends, |
| 786 | + and allow index lookups to reference that bitmap to avoid heap |
| 787 | + lookups, perhaps the same bitmap we might add someday to determine |
| 788 | + which heap pages need vacuuming. |
785 | 789 | </p>
|
786 | 790 | </li><li>Consider automatic caching of queries at various levels:
|
787 | 791 | <ul>
|
|
0 commit comments