Re: [GENERAL] Creation of tsearch2 index is very

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: [GENERAL] Creation of tsearch2 index is very
Дата
Msg-id 1749.1137876949@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: [GENERAL] Creation of tsearch2 index is very  (David Lang <dlang@invendra.net>)
Список pgsql-performance
David Lang <dlang@invendra.net> writes:
> On Sat, 21 Jan 2006, Tom Lane wrote:
>> Ron <rjpeace@earthlink.net> writes:
>>> Maybe we are over thinking this.  What happens if we do the obvious
>>> and just make a new page and move the "last" n/2 items on the full
>>> page to the new page?
>>
>> Search performance will go to hell in a handbasket :-(.  We have to make
>> at least some effort to split the page in a way that will allow searches
>> to visit only one of the two child pages rather than both.

> does the order of the items within a given page matter?

AFAIK the items within a GIST index page are just stored in insertion
order (which is exactly why Ron's suggestion above doesn't work well).
There's no semantic significance to it.  It's only when we have to split
the page that we need to classify the items more finely.

            regards, tom lane

В списке pgsql-performance по дате отправления:

Предыдущее
От: Ümit Öztosun
Дата:
Сообщение: Slow queries consisting inner selects and order bys & hack to speed up
Следующее
От: Rikard Pavelic
Дата:
Сообщение: Re: [PERFORMANCE] Stored Procedures