Re: Improve Full text rank in a query - Mailing list pgsql-performance

From Tom Lane
Subject Re: Improve Full text rank in a query
Date
Msg-id 6689.1204868413@sss.pgh.pa.us
Whole thread Raw
In response to Improve Full text rank in a query  ("b wragg" <bwragg@tpg.com.au>)
List pgsql-performance
"b wragg" <bwragg@tpg.com.au> writes:
> I'm new to this, but I can't figure out why the "Gunbower Island Primary
> School" is getting top place. How do I get the query to improve the ranking
> so that an exact match (like "Gunbower|Island|Vic") gets a higher position?

I'm new at this too, but AFAICS these are both exact matches: they have
the same matching lexemes at the same positions, so the basic rank
calculation is going to come out exactly the same.  Normalization option
32 doesn't help (as the manual notes, it's purely cosmetic).  So it's
random chance which one comes out first.

What I think you might want is one of the other normalization options,
so that shorter documents are preferred.  Either 1, 2, 8, or 16 would
do fine for this simple example --- which one you want depends on just
how heavily you want to favor shorter documents.

            regards, tom lane

pgsql-performance by date:

Previous
From: paul rivers
Date:
Subject: Re: count * performance issue
Next
From: Vlad Arkhipov
Date:
Subject: Nested loop vs merge join: inconsistencies between estimated and actual time