Is it possible to search for a term with its relevants using Mysql’s MATCH AGAINST?
For example could I get informational by searching for information? I know it is possible with LIKE with % sign but unfortunately LIKE cannot calculate relevancy.
What is the best way of ordering results by relevancy and same time be able to searching for relevant words?
As indicated in this blog post, MySQL fulltext is slow when it comes to ordering. Apache Lucene would be an alternative.
Relevancy can be taken into account too. Here is the full list of Lucene features: