Re: Bitmap indexes

From: PFC <lists(at)boutiquenumerique(dot)com>
To: alex(at)neteconomist(dot)com, "PostgreSQL Perfomance" <pgsql-performance(at)postgresql(dot)org>
Subject: Re: Bitmap indexes
Date: 2005-01-28 16:04:48
Message-ID: opslblmagoth1vuj@musicbox
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance


contrib/intarray has an index type which could be what you need.

> I was wondering about index types. Oracle has an index type called a
> 'bitmap' index. They describe this as an index for low cardinality
> fields, where only the cardinal values are indexed in a b-tree, and
> then it uses a bitmap below that to describe rows. They say that this
> type of index is very fast when combined with queries that used the
> indexed row in 'AND' clauses in a sql statement as the index can
> 'mask' the results very fast. I have not been able to benchmark the
> actual effectiveness of this kind of index, but I was wondering if
> anyone has had experience with this an believes it might be a useful
> feature for postgres?
>
> Yes I have a vested interest in this because alot of my searches are
> masked against low cardinality fields 'Y' or 'N' type things where
> this could potentialy benefit me...
>
> Alex Turner
> NetEconomist
>
> ---------------------------(end of broadcast)---------------------------
> TIP 6: Have you searched our list archives?
>
> http://archives.postgresql.org
>

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Tom Lane 2005-01-28 16:13:46 Re: Bitmap indexes
Previous Message Alex Turner 2005-01-28 15:59:58 Re: PostgreSQL clustering VS MySQL clustering