… the downsides to mysqldump is the need to scan the full tables and in turn, load that data into and pollute…’ AND ENGINE=’InnoDB’; EOF For full disclosure, here are the versions I was using on my test VM: Percona Server 5.5…
Post: InnoDB Full-text Search in MySQL 5.6: Part 2, The Queries!
…: SELECT id, full_name, MATCH(full_name, details) AGAINST (‘+james +peterson +arizona’ IN BOOLEAN MODE) AS score FROM dir_test_myisam ORDER BY…: SELECT id, full_name, MATCH(full_name, details) AGAINST (‘+james +peterson +arizona’ IN BOOLEAN MODE) AS score FROM dir_test_innodb ORDER BY…: SELECT id, full_name, MATCH(full_name, details) AGAINST (‘+james +peterson arizona’ IN BOOLEAN MODE) AS score FROM dir_test_myisam ORDER BY…

