Hash indexes

Поиск
Список
Период
Сортировка
От Mladen Gogala
Тема Hash indexes
Дата
Msg-id 1260906498.22825.52.camel@nycwxp2622
обсуждение исходный текст
Ответы Re: Hash indexes  (Richard Broersma <richard.broersma@gmail.com>)
Список pgsql-novice
PostgreSQL has hash indexes, very similar to Oracle bitmap indexes.
Oracle warns the application designers against using them in the OLTP
applications because of the locking. Namely, locking a row would lock all
the rows which hash to the same hash value as the original row.
My question is whether the same thing applies to the PostgreSQL hash
indexes? In the documentation page, I found the following:

http://www.postgresql.org/docs/8.4/interactive/indexes-types.html

CREATE INDEX name ON table USING hash (column);

    Note: Hash index operations are not presently WAL-logged, so hash
indexes might need to be rebuilt with REINDEX after a database crash. For
this reason, hash index use is presently discouraged.


My question is whether someone here has played with the hash indexes? Any
words of caution or blissful experiences? Thanks.


VMSMladen Gogala
Sr. Oracle DBA
1500 Broadway
New York, NY 10036
(212) 329-5251
www.vmsinfo.com




The Leader in Integrated Media Intelligence Solutions




Вложения

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

Предыдущее
От: "Jean-Yves F. Barbier"
Дата:
Сообщение: UTC timestamp
Следующее
От: Richard Broersma
Дата:
Сообщение: Re: Hash indexes