Re: How to use the full text index feature on PostgreSQL

Поиск
Список
Период
Сортировка
От Matthew T. O'Connor
Тема Re: How to use the full text index feature on PostgreSQL
Дата
Msg-id 44DCAE7C.10409@zeut.net
обсуждение исходный текст
Ответ на Re: How to use the full text index feature on PostgreSQL  (Chris <dmagick@gmail.com>)
Список 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 по дате отправления:

Предыдущее
От: Francis GUDIN
Дата:
Сообщение: Re: VACUUM VERBOSE output to STDERR
Следующее
От: "Matthew T. O'Connor"
Дата:
Сообщение: Re: How to use the full text index feature on PostgreSQL