Re: Full text search with ORDER BY performance issue

Поиск
Список
Период
Сортировка
От Robert Haas
Тема Re: Full text search with ORDER BY performance issue
Дата
Msg-id 603c8f070907290813h1e814784t482ffb394a70d36a@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Full text search with ORDER BY performance issue  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: Full text search with ORDER BY performance issue
Список pgsql-performance
On Wed, Jul 29, 2009 at 10:22 AM, Tom Lane<tgl@sss.pgh.pa.us> wrote:
> Robert Haas <robertmhaas@gmail.com> writes:
>> If love is an uncommon word, there's no help for queries of this type
>> being slow unless the GIN index can return the results in order.  But
>> if love is a common word, then it would be faster to do an index scan
>> by timestamp on the baserel and then treat comment_tsv @@
>> plainto_tsquery('love') as a filter condition.  Is this a selectivity
>> estimation bug?
>
> Doesn't look like it: estimated number of matches is 253635, actual is
> 259828, which is really astonishingly close considering what we have to
> work with.  It's not clear though what fraction of the total that
> represents.

Hmm, good point.  It seems like it would be useful to force the
planner into use the other plan and get EXPLAIN ANALYZE output for
that for comparison purposes, but off the top of my head I don't know
how to do that.

...Robert

В списке pgsql-performance по дате отправления:

Предыдущее
От: PFC
Дата:
Сообщение: Re: Full text search with ORDER BY performance issue
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Full text search with ORDER BY performance issue