Re: Queryplan within FTS/GIN index -search. - Mailing list pgsql-performance

From Jeff Davis
Subject Re: Queryplan within FTS/GIN index -search.
Date
Msg-id 1256313662.2580.810.camel@jdavis
Whole thread Raw
In response to Re: Queryplan within FTS/GIN index -search.  (jesper@krogh.cc)
Responses Re: Queryplan within FTS/GIN index -search.  (Jesper Krogh <jesper@krogh.cc>)
List 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 by date:

Previous
From: Grzegorz Jaśkiewicz
Date:
Subject: Re: query planning different in plpgsql?
Next
From: Tom Lane
Date:
Subject: Re: query planning different in plpgsql?