Re: GiST or GIN, I feel like I am doing something wrong - Mailing list pgsql-general

From Tom Lane
Subject Re: GiST or GIN, I feel like I am doing something wrong
Date
Msg-id 27246.1245252603@sss.pgh.pa.us
Whole thread Raw
In response to GiST or GIN, I feel like I am doing something wrong  (Aaron <aaron@chasingnuts.com>)
Responses Re: GiST or GIN, I feel like I am doing something wrong
List pgsql-general
Aaron <aaron@chasingnuts.com> writes:
> CREATE INDEX profile_images_fulltext_gin ON profile_images_fulltext
> USING gin(content);
> CREATE INDEX profile_images_fulltext_gist ON profile_images_fulltext
> USING gist(content);

What did you have maintenance_work_mem set to while you did this?
GIST doesn't care, but GIN likes to have lots of workspace while
building an index.  I'm not entirely sure if small workspace only
affects build time, or if it could result in a bloated/inefficient
index ... but if the latter is true it might explain your results.

            regards, tom lane

pgsql-general by date:

Previous
From: Tom Lane
Date:
Subject: Re: how to cancel a query in progress
Next
From: "Mike Kay"
Date:
Subject: Re: used for large media files