tsearch2: setting weights on tsquery

From: Ivan Sergio Borgonovo <mail(at)webthatworks(dot)it>
To: pgsql-general(at)postgresql(dot)org
Subject: tsearch2: setting weights on tsquery
Date: 2008-10-21 08:29:52
Message-ID: 20081021102952.420deb9a@dawn.webthatworks.it
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

plainto_tsquery is handy to make a string from users turn into a
tsquery.

This strips "control" characters and glue lexemes with &.

Now I've several strings coming from input user and what I'd like to
do is assign a different token to each part.

eg.
input1 = "ratto && matto | gatto & the"
input2 = "sasso|&passo lasso a"
->
tsquery = 'ratto:A & matto:A & gatto:A & sasso:B & passo:B & lasso:B'

I could prepare the input outside postgresql and then
"concatenate" the queries but plainto_tsquery is very comfortable
since it will always actually "clean up" the right way the input and
adds & at the right place.

Otherwise I could use more than one tsvector for searching input1
and input2 but it seems it is slower than
update t1 set FT1IDX=(

setweight(to_tsvector('pg_catalog.english',
coalesce(input1,'')), 'A') || ' ' ||

setweight(to_tsvector('pg_catalog.english',
coalesce(input2,'')), 'B')
)

and I won't be able rank on all fields at a time.

--
Ivan Sergio Borgonovo
http://www.webthatworks.it

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Ruben Blanco 2008-10-21 10:59:26 How to free disk space
Previous Message tomas 2008-10-21 07:49:44 Re: [HACKERS] Debian no longer dumps cores?