Re: Postgres case insensitive searches - Mailing list pgsql-general

From bhanu udaya
Subject Re: Postgres case insensitive searches
Date
Msg-id COL127-W11A02C040E3FC3FFFEC40D3700@phx.gbl
Whole thread Raw
In response to Re: Postgres case insensitive searches  (bhanu udaya <udayabhanu1984@hotmail.com>)
Responses Re: Postgres case insensitive searches  (bhanu udaya <udayabhanu1984@hotmail.com>)
Re: Postgres case insensitive searches  (Arjen Nienhuis <a.g.nienhuis@gmail.com>)
List pgsql-general

I almost used every option ; upper, posix, gist, gin, citext, etc. feature of the postgres to get the query most optimal.. If a particular query is taking  1 + second for one user/thread, then for many users accessing it concurrently would take lot of resources and the performance would be dropped in no time may be for 10 users .. I am trying to  get the best way of achieving things with postgres.
 
 I do not know what else can be done to get the performance more optimal. if there are any good suggestions in tweaking db parameters or with some index that can help, then  I would love to experiment it and achieve it.
 
We have observed that inserts are ok, but the selects are dropping performance and not acceptable.  Show me an index that can retrieve a simple select query (case insensitive) in 100 -200 ms.  from a table which has 2- 10 million records.  Is this possible ? I could have gone for partitions, etc., but it is plan B and more over partitions in postgres has to undergo more manual process.
 
Thanks for all replies and help.

Subject: Re: [GENERAL] Postgres case insensitive searches
From: neilt@neiltiffin.com
Date: Sat, 29 Jun 2013 14:08:47 -0500
CC: pgsql-general@postgresql.org
To: udayabhanu1984@hotmail.com


On Jun 29, 2013, at 11:24 AM, bhanu udaya <udayabhanu1984@hotmail.com> wrote:

Upper and Lower functions are not right choice when the table is > 2.5 million and where we also have heavy insert transactions.

PostgreSQL and SQL Server are completely different.  Rules that apply to SQL Server do not necessarily apply to PostgreSQL.

You problem is not the use of upper() or lower() it is the assumption what works in SQL Server is the best way to use PostgreSQL.  You'll get farther if you benchmark several of the suggestions, then if the performance is not good enough, ask how to improve the performance.  This will take a little work on your part, but that is how you learn.

Neil

pgsql-general by date:

Previous
From: bhanu udaya
Date:
Subject: Re: Postgres case insensitive searches
Next
From: bhanu udaya
Date:
Subject: Re: Postgres case insensitive searches