Re: [HACKERS] GiST intarray rd-tree indexes using intbig

2007-06-09 Thread Teodor Sigaev
It is documented that intbig utilizes 4096 bit signatures to represent the set nodes in the tree. However, I am unable to find any reference to a 4kbit signature in the code and am wondering where this is implemented. _int.h: /* bigint defines */ #define SIGLENINT 63 /* >122 => key w

[HACKERS] GiST intarray rd-tree indexes using intbig

2007-06-09 Thread Jonathan Gray
Hello all, I am working on a search-related project where scaling is a major issue. Recently I've been experimenting with the beautifully designed rd-tree indexes and intarray contrib module, and it seems like a great solution for me. I've hit a few bumps and am looking for clarification fr