Good evening all,
I want to search in a database (80000 rows), two rows with 'full-text-Boolean-magic'. That worked for a while very good, so Index is on and everything is how it should be.
Now, because de data is in Dutch, French or English I want to be able to translate it on the fly. Again, this works like a charm (Woooo Google, Houray Microsoft).
So, say I want to search for the word 'cheese', the script starts translating and searching for cheese, kaas and fromage... (mmm, bring it on!)
this looks like this:
SELECT * FROM archief WHERE MATCH(description, keywords) AGAINST('(+cheese) (+kaas) (+cheese) (+fromage)' IN BOOLEAN MODE) AND showa = '1' AND rel_date <= '20110620' ORDER BY datetaken desc LIMIT 50
and YES, this works
but than, say, I want to look for 'Blue Cheese'
SELECT * FROM archief WHERE MATCH(description, keywords) AGAINST('(+blauwe +kaas) (+blauwe +kaas) (+blue +cheese) (+fromage +bleu)' IN BOOLEAN MODE) AND showa = '1' AND rel_date <= '20110620' ORDER BY datetaken desc LIMIT 50
I get results with blue OR cheese in it, and hey, I use the '+' operator before the words!?
using the quotes for an exact phrase does his job:
SELECT * FROM archief WHERE MATCH(description, keywords) AGAINST('("blauwe kaas") () () ()' IN BOOLEAN MODE) AND showa = '1' AND rel_date <= '20110620' ORDER BY datetaken desc LIMIT 50
of course, this is not a good option for searching a database.
So my friends, what am I missing here, why is the 'plus' operator not working?
thank you for the attention and your future solutions!!
j
ft_min_word_lengthvariable set to? If it's >4, thenkaasandbleuwon't get FT-indexed, so your search would effectively just+cheese. – Marc B Jun 20 '11 at 20:46