Обсуждение: understanding post gres indexes

Поиск
Список
Период
Сортировка

understanding post gres indexes

От
IYENGAR SURESH PARTHASARATHY
Дата:
hi,

i want to fully understand the functioning of postgres indexes with
respect to the code.

where can i find help regarding this ? any detailed manuals available ??



--


IYENGAR SURESH P.
--------------------
MTECH 1 , IIT BOMBAY HOSTEL 8 ,

Re: understanding post gres indexes

От
Neil Conway
Дата:
On Sun, 2006-03-05 at 08:50 +0530, IYENGAR SURESH PARTHASARATHY wrote:
> i want to fully understand the functioning of postgres indexes with
> respect to the code.

See src/backend/access/ in the source tree, specifically the nbtree/,
hash/, gist/ and index/ subdirectories -- each directory has a README
with some additional information. Personally I find the hash index code
easiest to understand, although it has the fewest features.

-Neil