Which index can i use ?

Поиск
Список
Период
Сортировка
От Abandoned
Тема Which index can i use ?
Дата
Msg-id 1193576999.533268.294820@y42g2000hsy.googlegroups.com
обсуждение исходный текст
Ответы Re: Which index can i use ?  (Richard Huxton <dev@archonet.com>)
Список pgsql-general
Hi..
I want to do index in postgresql & python.
My table:
id(int) | id2(int) | w(int) | d(int)

My query:
select id, w where id=x and id2=y (sometimes and d=z)

I have too many insert and select operation on this table.
And which index type can i use ? Btree, Rtree, Gist or Hash ?
Also I want to unique (id, id2)..
Now this is my index. is it give me good performance ?
CREATE UNIQUE INDEX ind1 ON test USING btree (id, id2)
CREATE INDEX ind2 ON test USING btree (id)
CREATE INDEX ind3 ON test USING btree (id2)
CREATE INDEX ind4 ON test USING btree (w)
CREATE INDEX ind5 ON test USING btree (d)

I'm too sorry my bad english.
King regards..


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

Предыдущее
От: "Dennis Brakhane"
Дата:
Сообщение: How can I easily and effectively support (language) translation of column values?
Следующее
От: davidrboyer@gmail.com
Дата:
Сообщение: postgresql in PHP