views:

32

answers:

1

I am looking for a way to estimate how much extra storage will be needed if a MySQL TEXT column gets a fulltext index.

Intuitively speaking the size of the fulltext index is dependent on the total length of text but what exactly is affecting it?

+1  A: 

"I have 200 MB of text data to index and the resulting index is 130 MB."

So it's comparable to the total size of data you index.

BarsMonster
Over here the index size is 4 times smaller than the data it indexes. Apparently one parameter that affects index size is the amount of words separated by whitespace and the "ft_min_word_len" configuration property.
Saul