I have this big table which I want to have fulltext search, so I made it MyISAM, as InnoDB doesn't support that.
Am I gonna have performance issues if I write a lot to that table? I have been told that MyISAM locks the whole table during writes.
Do I have any other option if I need both fulltext search and non-locking write?