Generalized Inverted Generalized Search Tree - Mailing list pgsql-hackers

From Takahiro Itagaki
Subject Generalized Inverted Generalized Search Tree
Date
Msg-id 20100514130345.A452.52131E4D@oss.ntt.co.jp
Whole thread Raw
Responses Re: Generalized Inverted Generalized Search Tree
List pgsql-hackers
We can index multiple scalar values per row with GIN access method,
and also can index single vector value per row with GiST AM.

Is it worth having a new AM to index multiple vector values per row?
It will be an AM for the missing feature in below:
               | scalar | vector |
----------------+--------+--------+single per row | btree  | gist   |multi per row  | gin    | *HERE* |

We can call the new AM "gigist". Or, there might be another idea
to support expression indexes for SRF functions, like =# CREATE TABLE tbl (c circle[]); =# CREATE INDEX ON tbl USING
gist(unnest(c));
 

Comments and ideas welcome.

Regards,
---
Takahiro Itagaki
NTT Open Source Software Center



pgsql-hackers by date:

Previous
From: Jaime Casanova
Date:
Subject: Re: nvarchar notation accepted?
Next
From: Peter Eisentraut
Date:
Subject: Re: nvarchar notation accepted?