Re: How to improve insert speed with index on text column - Mailing list pgsql-performance

From Rosser Schwarz
Subject Re: How to improve insert speed with index on text column
Date
Msg-id CAFnxYwi80kvcC4zhjPT5EX6r+-2EfHYZG4XrV1-YnK9=4bdF7g@mail.gmail.com
Whole thread Raw
In response to Re: How to improve insert speed with index on text column  (Saurabh <saurabh.b85@gmail.com>)
Responses Re: How to improve insert speed with index on text column
List pgsql-performance
On Mon, Jan 30, 2012 at 9:46 AM, Saurabh <saurabh.b85@gmail.com> wrote:
> I can not create the index after insertion because user can
> search the data as well while insertion.

Remember, DDL is transactional in PostgreSQL.  In principle, you
should be able to drop the index, do your inserts, and re-create the
index without affecting concurrent users, if you do all of that inside
an explicit transaction.  Doing the inserts inside a transaction may
speed them up, as well.

rls

--
:wq

pgsql-performance by date:

Previous
From: Jeff Janes
Date:
Subject: Re: How to improve insert speed with index on text column
Next
From: Claudio Freire
Date:
Subject: Re: How to improve insert speed with index on text column