when I use fulltext search in my MySQL 5.6 MyISAM table I sometimes get an error but most of the time it works fine.
This query works fine
SELECT title, MATCH(title, keywords, description) AGAINST ('background+water+sea') AS 'relevance' FROM `content` WHERE
MATCH(title, keywords, description) AGAINST ('background+water+sea');
But this one doesn't
SELECT title, MATCH(title, keywords, description) AGAINST ('background+water+sea+blue') AS 'relevance' FROM `content` WHERE
MATCH(title, keywords, description) AGAINST ('background+water+sea+blue');
They are basically the same only the second also asks for "blue". There are over 100,000 lines in the table. It gives me "#2014 - Commands out of sync; you can't run this command now" in phpMyAdmin and "Got error -1 from storage engine" if run on a website.
Any ideas?