Re: Question about indexes - Mailing list pgsql-hackers

From Tom Lane
Subject Re: Question about indexes
Date
Msg-id 20776.1075503778@sss.pgh.pa.us
Whole thread Raw
In response to Re: Question about indexes  (Hannu Krosing <hannu@tm.ee>)
Responses Re: Question about indexes  (Hannu Krosing <hannu@tm.ee>)
Re: Question about indexes  (Greg Stark <gsstark@mit.edu>)
List pgsql-hackers
Hannu Krosing <hannu@tm.ee> writes:
> Another idea would be using bitmaps where we have just one bit per
> database page and do a seq scan but just over marked pages.

That seems a bit too lossy for me, but I really like your later idea
about folding.  Generalizing that a little, we can choose any fold point
we like.  We could allocate, say, one 32-bit word per page and set the
(i mod 32) bit when item i is fingered by the index.  After retrieving
the heap page, we'd need to test all the valid rows that have item
numbers matching a set bit mod 32.  On typical tables (with circa 100
items per page) this would require testing only about 3 rows per page.
ORing and ANDing of such bitmaps still works, with the understanding
that it's lossy and you have to double check each retrieved tuple.

If the fold point is above about 100, your idea of keeping track of
whether we actually set any wrapped-around bits would become useful,
but below that I think we'd just be wasting a bit.
        regards, tom lane


pgsql-hackers by date:

Previous
From: Bruce Momjian
Date:
Subject: Re: Mixing threaded and non-threaded
Next
From: markw@osdl.org
Date:
Subject: Re: DBT-2 pulls PostgreSQL from CVS for STP