Hi'
I'm currently evaluating many FullText indexing solutions, and I'm playing with native postgres FT.
I'm trying to index my data using GIN indices. But there's a limitation in the field size, I encounter some errors saying "huge tuple" while inserting data
As far as I understand, it's directly related to the field size. But this limitation is not written in any documentation I found, so does someone know this limitation, and if ther'es some way to change it ?
thanks
PS : I found this definition in postgresql source code :
((BLCKSZ - SizeOfPageHeaderData - \ MAXALIGN(sizeof(GinPageOpaqueData))) / 3 - sizeof(ItemIdData))
and will try to use it if nobody has some quick answers.