Topic: Mysql DB size, "search_matches" table, and fulltext indexing
As I am approaching the limit of my mysql DB (authorised by my provider : 25Mo), I would like to know if it is possible to reduce the size.
The "search_matches" table size is greater than half the total DB size, and I saw that with the MySQL fulltext Search extension (http://www.punres.org/desc.php?pid=274) , "search_matches" and "search_words" tables can be suppressed:
However, it is my intention to add support for MySQL fulltext indexing in PunBB 1.3. With that enabled, you will be able to delete that table. With fulltext indexing, MySQL maintains those index tables internally
With fulltext search extension, what are the consequences on the DB size? OK, important reduction as the biggest table is suppressed, but does the "ADD FULLTEXT" option on "posts" and "topics" tables increase the size of these tables? How much? If there is a significant increase, what is the final result, a gain or a loss of size?
Thanks,