Background
I need to implement FULLTEXT search on a MySQL server database (in the size range of 10k-200k records).
As of now, database search is based on naive implementation (LIKE queries), which is obviously inefficient, not to mention unconfigurable etc.
Two alternatives are considered:
Enabling
MySQL's native FULLTEXT (requires adding one or moreMyISAMtables - the entire database isInnoDBright now);Installing
Sphinx.
(We use PHP 5.2 and upgrading is not an option, so InnoDB FULLTEXT is out of question here.)
The problem
There are performance considerations. It is understandable that implementing FULLTEXT either way will eat more disk space as well as put more burden on the CPU.
The goal is to find out, by how much. Both solutions are to be benchmarked against eachother (as well as the status quo of course). I need to set up and perform these tests.
The way I would go about it is:
Fill up a database with real data (say 100k rows);
Measure the time required to build an index;
Simulate the need of reindexing by inserting / updating a few thousands rows - again, profiling the time required as well as CPU and RAM usage;
Testing query speed with a set of short and long phrases, in both boolean and natural language mode.
Fairly simple so far, but any advice would be much appreciated, since I am more of a desktop / client app dev and I'm way out of my comfort zone.
Questions
What am I missing? Is this test scenario likely to yield meaningful results?
What is the right way to monitor server CPU and RAM usage if not a cron script?
I'm aware it is a bit of an open question, I hope it won't get closed though.