Re: How to use the full text index feature on PostgreSQL - Mailing list pgsql-general

From Matthew T. O'Connor
Subject Re: How to use the full text index feature on PostgreSQL
Date
Msg-id 44DCAE7C.10409@zeut.net
Whole thread Raw
In response to Re: How to use the full text index feature on PostgreSQL  (Chris <dmagick@gmail.com>)
List pgsql-general
Chris wrote:
> You need to install & setup tsearch2.
>
> I have a small article about how to do that here:
>
> http://www.designmagick.com/article/27/


Nice article, very clear and concise, however one small nit.  At the end
of page I don't think you need the vacuum full, vacuum may or may not be
useful, vacuum full is certainly not needed, and the analyze command
will update the stats just fine all by it self.

The part of the article in question:

CREATE INDEX newscontent_fti_idx ON newsitem USING gist(newscontent_fti);

When that's finished, we need to update postgresql statistics:

VACUUM FULL ANALYZE;

pgsql-general by date:

Previous
From: Francis GUDIN
Date:
Subject: Re: VACUUM VERBOSE output to STDERR
Next
From: "Matthew T. O'Connor"
Date:
Subject: Re: How to use the full text index feature on PostgreSQL