Re: fast DISTINCT or EXIST

Поиск
Список
Период
Сортировка
От Arjen van der Meijden
Тема Re: fast DISTINCT or EXIST
Дата
Msg-id 4617D4D4.2080509@tweakers.net
обсуждение исходный текст
Ответ на Re: fast DISTINCT or EXIST  (Tilo Buschmann <mailinglist.postgresql.performance@b-n-w.org>)
Список 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 по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: fast DISTINCT or EXIST
Следующее
От: david@lang.hm
Дата:
Сообщение: Re: SCSI vs SATA