Re: fast DISTINCT or EXIST - Mailing list pgsql-performance

From Arjen van der Meijden
Subject Re: fast DISTINCT or EXIST
Date
Msg-id 4617D4D4.2080509@tweakers.net
Whole thread Raw
In response to Re: fast DISTINCT or EXIST  (Tilo Buschmann <mailinglist.postgresql.performance@b-n-w.org>)
List pgsql-performance
On 7-4-2007 18:24 Tilo Buschmann wrote:
> Unfortunately, the query above will definitely not work correctly, if
> someone searches for "a" or "the".

That are two words you may want to consider not searching on at all.

As Tom said, its not very likely to be fixed in PostgreSQL. But you can
always consider using application logic (or a pgpsql function, you could
even use a set returning function to replace the double-limit subselects
in your in-statement) which will automatically fetch more records when
the initial guess turns out to be wrong, obviously using something like
a NOT IN to remove the initially returned cd.id's for the next batches.
Then again, even 'a' or 'the' will not likely be in *all* tracks of a
cd, so you can also use the 'average amount of tracks per cd' (about 10
or 11?) as your multiplier rather than my initial 3. Obviously you'll
loose performance with each increment of that value.

Best regards,

Arjen

pgsql-performance by date:

Previous
From: Tom Lane
Date:
Subject: Re: fast DISTINCT or EXIST
Next
From: david@lang.hm
Date:
Subject: Re: SCSI vs SATA