Creating an index MySQL
After I have added the FULLTEXT index, how do I keep it up to date?
Added it this way : ALTER TABLE search_index ADD FULLTEXT(si_fulltext)
Tried to update it like this :
ALTER TABLE search_index MODIFY FULLTEXT(si_fulltext)
ALTER TABLE search_index CHANGE FULLTEXT(si_fulltext)
Thanks,
Joe
Unless you disabled the index, the server should be keeping the index up to date as data changes in the column. If you’d like to explore what is in the index, you can use the
myisam_ftdumputility:http://dev.mysql.com/doc/refman/5.0/en/myisam-ftdump.html