From: | Oleg Bartunov <oleg(at)sai(dot)msu(dot)su> |
---|---|
To: | Ron Mayer <rm_pg(at)cheapcomplexdevices(dot)com> |
Cc: | pgsql-general(at)postgresql(dot)org |
Subject: | Re: Tsearch & functional indexes |
Date: | 2005-10-09 10:37:28 |
Message-ID: | Pine.GSO.4.63.0510091433310.10366@ra.sai.msu.su |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
Ron,
tsearch index is lossy, so search results needs to be verified.
If you have separate tsvector column you could use it and get all benefit
of to_tsvector already process documents (parsing, dictionaries lookup,...),
instead of reading entire document from disk and process it again.
Read tsearch2 internals for more info.
http://www.sai.msu.su/~megera/oddmuse/index.cgi/Tsearch_V2_internals
Oleg
On Sun, 9 Oct 2005, Ron Mayer wrote:
>
> In the tsearch2 documentation I see a lot of examples where you
> add a column of type tsvector to your table and then indexing
> that column.
>
> Instead of adding the extra column, would it be possible to
> just make a functional index something like this:
>
> create index foo__tsearch on foo using gist (to_tsvector('simple'::text,
> text))
>
> A brief informal experiment I tried suggests that
> the create index command works; but that queries
> using this approach were slower than having the
> column around. I would have expected it to be faster,
> since the disk space used should have been smaller.
> Perhaps something about table statistics that I'm
> not considering?
>
> ---------------------------(end of broadcast)---------------------------
> TIP 5: don't forget to increase your free space map settings
>
Regards,
Oleg
_____________________________________________________________
Oleg Bartunov, sci.researcher, hostmaster of AstroNet,
Sternberg Astronomical Institute, Moscow University (Russia)
Internet: oleg(at)sai(dot)msu(dot)su, http://www.sai.msu.su/~megera/
phone: +007(095)939-16-83, +007(095)939-23-83
From | Date | Subject | |
---|---|---|---|
Next Message | Yonatan Ben-Nes | 2005-10-09 11:39:54 | Re: How to inject knowledge into a Postgres database |
Previous Message | Zlatko Matić | 2005-10-09 10:07:41 | problems with upgrade from 8.0.3 to 8.0.4, Windows |