Re: Tsearch2 Initial Search Speed

From: Matthew Wakeling <matthew(at)flymine(dot)org>
To: Howard Cole <howardnews(at)selestial(dot)com>
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: Tsearch2 Initial Search Speed
Date: 2008-06-17 11:30:48
Message-ID: Pine.LNX.4.64.0806171228480.3987@aragorn.flymine.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

On Tue, 17 Jun 2008, Howard Cole wrote:
> They both appear to do a scan on the email table (Why?).

The indexes don't contain copies of the row data. They only contain
pointers to the rows in the table. So once the index has been consulted,
Postgres still needs to look at the table to fetch the actual rows. Of
course, it only needs to bother looking where the index points, and that
is the benefit of an index.

Matthew

--
I've run DOOM more in the last few days than I have the last few
months. I just love debugging ;-) -- Linus Torvalds

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Howard Cole 2008-06-17 11:59:53 Re: Tsearch2 Initial Search Speed
Previous Message Howard Cole 2008-06-17 11:23:29 Re: Tsearch2 Initial Search Speed