Re: Help w/speeding up range queries?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Help w/speeding up range queries?
Дата
Msg-id 12189.1162355349@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Help w/speeding up range queries?  (John Major <major@cbio.mskcc.org>)
Ответы Re: Help w/speeding up range queries?
Re: Help w/speeding up range queries?
Список 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 по дате отправления:

Предыдущее
От: mark@mark.mielke.cc
Дата:
Сообщение: Re: MVCC & indexes?
Следующее
От: "Luke Lonergan"
Дата:
Сообщение: Re: Help w/speeding up range queries?