Re: performance of like queries

From: Chris Browne <cbbrowne(at)acm(dot)org>
To: pgsql-performance(at)postgresql(dot)org
Subject: Re: performance of like queries
Date: 2007-10-02 21:55:08
Message-ID: 60abr1mbb7.fsf@dba2.int.libertyrms.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

kevin(at)kevinkempterllc(dot)com (Kevin Kempter) writes:
> any suggestions for improving "LIKE '%text%'" queries?

If you know that the 'text' portion of that query won't change, then
you might create a partial index on the boolean condition.

That is,

create index index_foo_text on my_table (tfield) where (tfield like '%text%');

I somehow doubt that is the case; more likely you want to be able to
search for:
select * from my_table where tfield like '%this%';
select * from my_table where tfield like '%that%';
select * from my_table where tfield like '%the other thing%';

There are basically three choices, at that point:

1. Get more memory, and hope that you can have all the data get
cached in memory.

2. Get more better disk, so that you can scan the table faster on
disk.

3. Look into tsearch2, which provides a full text search capability.
--
(format nil "~S(at)~S" "cbbrowne" "linuxdatabases.info")
http://cbbrowne.com/info/x.html
"We're born with a number of powerful instincts, which are found
across all cultures. Chief amongst these are a dislike of snakes, a
fear of falling, and a hatred of popup windows" -- Vlatko Juric-Kokic

In response to

Browse pgsql-performance by date

  From Date Subject
Next Message Giulio Cesare Solaroli 2007-10-02 21:55:27 Newbie question about degraded performance on delete statement.
Previous Message Marcin Stępnicki 2007-10-02 21:49:19 Re: performance of like queries