Re: Save Hash Indexes

Поиск
Список
Период
Сортировка
От Andres Freund
Тема Re: Save Hash Indexes
Дата
Msg-id 20131101144928.GD9385@awork2.anarazel.de
обсуждение исходный текст
Ответ на Re: Save Hash Indexes  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: Save Hash Indexes  (Hannu Krosing <hannu@2ndQuadrant.com>)
Список pgsql-hackers
On 2013-11-01 09:49:57 -0400, Tom Lane wrote:
> Lastly: what real-world problem are we solving by kicking that code
> to the curb?

It makes hashed lookups much easier to use. Currently if you want
indexed access over wide columns and equality is all you need you need
to write rather awkward queries to make that happen in each query,
something like:
WHERE hash(column) = hash('value') AND column = 'value'.

So some magic that hides having to do that would be nice, even it
doesn't have O(log(n)) properties. The interesting part is that the
index gets much denser and smaller, and that the individual comparisons
are much cheaper.

Greetings,

Andres Freund

-- Andres Freund                       http://www.2ndQuadrant.com/PostgreSQL Development, 24x7 Support, Training &
Services



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

Предыдущее
От: Kevin Grittner
Дата:
Сообщение: Re: [GENERAL] Cannot create matview when referencing another not-populated-yet matview in subquery
Следующее
От: Tom Lane
Дата:
Сообщение: Re: API bug in DetermineTimeZoneOffset()