|
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:30:23 EST 2005 |
| 11 | +Last updated: Thu Dec 1 23:28:03 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>.
|
@@ -781,11 +781,14 @@ <h1><a name="section_15">Cache Usage</a></h1>
|
781 | 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. 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. |
| 784 | + be cleared when a heap tuple is expired. |
| 785 | +</p> |
| 786 | +<p> Another idea is to maintain a bitmap of heap pages where all rows |
| 787 | + are visible to all backends, and allow index lookups to reference |
| 788 | + that bitmap to avoid heap lookups, perhaps the same bitmap we might |
| 789 | + add someday to determine which heap pages need vacuuming. Frequently |
| 790 | + accessed bitmaps would have to be stored in shared memory. One 8k |
| 791 | + page of bitmaps could track 512MB of heap pages. |
789 | 792 | </p>
|
790 | 793 | </li><li>Consider automatic caching of queries at various levels:
|
791 | 794 | <ul>
|
|
0 commit comments