Re: Help w/speeding up range queries? - Mailing list pgsql-performance

From Tom Lane
Subject Re: Help w/speeding up range queries?
Date
Msg-id 12189.1162355349@sss.pgh.pa.us
Whole thread Raw
In response to Help w/speeding up range queries?  (John Major <major@cbio.mskcc.org>)
Responses Re: Help w/speeding up range queries?
Re: Help w/speeding up range queries?
List pgsql-performance
John Major <major@cbio.mskcc.org> writes:
> My problem is, I often need to execute searches of tables like these
> which find "All features within a range".
> Ie:  select FeatureID from SIMPLE_TABLE where FeatureChromosomeName like
> 'chrX' and StartPosition > 1000500 and EndPosition < 2000000;

A standard btree index is just going to suck for these types of queries;
you need something that's actually designed for spatial range queries.
You might look at the contrib/seg module --- if you can store your
ranges as "seg" datatype then the seg overlap operator expresses what
you need to do, and searches on an overlap operator can be handled well
by a GIST index.

Also, there's the PostGIS stuff, though it might be overkill for what
you want.

            regards, tom lane

pgsql-performance by date:

Previous
From: mark@mark.mielke.cc
Date:
Subject: Re: MVCC & indexes?
Next
From: "Luke Lonergan"
Date:
Subject: Re: Help w/speeding up range queries?