Re: Queryplan within FTS/GIN index -search.

Поиск
Список
Период
Сортировка
От Jeff Davis
Тема Re: Queryplan within FTS/GIN index -search.
Дата
Msg-id 1256313662.2580.810.camel@jdavis
обсуждение исходный текст
Ответ на Re: Queryplan within FTS/GIN index -search.  (jesper@krogh.cc)
Ответы Re: Queryplan within FTS/GIN index -search.  (Jesper Krogh <jesper@krogh.cc>)
Список pgsql-performance
On Fri, 2009-10-23 at 09:45 +0200, jesper@krogh.cc wrote:
> No, it definately has to go visit the index/table to confirm findings, but
> that why I wrote Queryplan in the subject line, because this os only about
> the strategy to pursue to obtain the results. And a strategy about
> limiting the amout of results as early as possible (as PG usually does)
> would be what I'd expect and MCV can help it guess on that.

I see what you're saying: you could still index the common terms like
normal, but just not look for anything in the index if it's an MCV. That
sounds reasonable, based on the numbers you provided.

>                Index Cond: (ftsbody_body_fts @@ to_tsquery('commonterm &
> spellerror'::text))
>  Total runtime: 862.771 ms
> (6 rows)

...

>                Index Cond: ((ftsbody_body_fts @@
> to_tsquery('commonterm'::text)) AND (ftsbody_body_fts @@
> to_tsquery('spellerror'::text)))
>  Total runtime: 8.724 ms
> (6 rows)
>

Something seems strange here. Both are a single index scan, but having a
single complex search key is worse than having two simple search keys.

Perhaps the real problem is that there's a difference between these
cases at all? I don't see any reason why the first should be more
expensive than the second.

Regards,
    Jeff Davis


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

Предыдущее
От: Grzegorz Jaśkiewicz
Дата:
Сообщение: Re: query planning different in plpgsql?
Следующее
От: Tom Lane
Дата:
Сообщение: Re: query planning different in plpgsql?