Zhihong Yu writes:
> I was able to create gin index on inet column in PG.
> GIN is good with points/elements in sets. Is gin a good index for inet
> column ?
As far as Postgres is concerned, inet is a scalar type: it has a
linear sort order, and there aren't many operations
## Zhihong Yu (z...@yugabyte.com):
> I was able to create gin index on inet column in PG.
>
> GIN is good with points/elements in sets. Is gin a good index for inet
> column ?
> It seems gist index would be better.
Why not use btree? The common operations are quite supported wit
Hi,
I was able to create gin index on inet column in PG.
GIN is good with points/elements in sets. Is gin a good index for inet
column ?
It seems gist index would be better.
Comments are welcome.