Re: Tsearch2 ranking

From: Teodor Sigaev <teodor(at)sigaev(dot)ru>
To: Hannes Dorbath <light(at)theendofthetunnel(dot)de>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Tsearch2 ranking
Date: 2006-03-13 19:20:24
Message-ID: 4415C5F8.1010001@sigaev.ru
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Order of terms in ts_query hasn't any meaning in current implementation. But you
can use your own ranking function.

Hannes Dorbath wrote:
> 2 rows of tsvector:
>
> 'bar':2 'baz':3 'foo':1
> 'bar':2 'baz':1 'foo':3
>
> so source text was:
>
> foo bar baz
> baz bar foo
>
> ts_query now is 'foo&baz&baz', so both matched.
>
> How can I honor the correct order of the first row and rank it higher?
> The position information is there, why doesn't rank() / rank_cd() not
> use it?
>
> Is there any way to make a difference between those to rows? Any? Even
> if it's a bad hack? I really need it :/
>
> Thanks in advance
>
>

--
Teodor Sigaev E-mail: teodor(at)sigaev(dot)ru
WWW: http://www.sigaev.ru/

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Chris Kratz 2006-03-13 19:21:39 Re: multi-column aggregates
Previous Message Chris Kratz 2006-03-13 19:09:26 Re: multi-column aggregates