I am shocked.

I spent past 3-4 days figuring out how I could implement stemming (and synonyms searches) in mysql when I see in SQL Server the query is incredibly easly:

Select * from tab where CONTAINS(*,'FORMSOF(THESAURUS,word)')

Is possibile on MySql there isn't anything like that?

link|improve this question

7  
Strange as it may seem, free MySQL has less features than commercial SQL Server. – Quassnoi Jan 18 '11 at 18:18
feedback

1 Answer

No, MySQL does not support matching against a user-provided thesaurus.

You can use an external FULLTEXT engine like Sphinx which supports morphology rules, has several stemmers and thesauri built in and allows pluggable ones.

link|improve this answer
unfortunaly sphnix doens't seem to have both of them. On forum a user said: stemming only works on english words and there aren't any built-in thesaurus. Source: sphinxsearch.com/forum/view.html?id=6832 (read last 3-4 posts) – yes123 Jan 18 '11 at 18:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.