So, I have a set of articles.
I do a query like this:
select *, match( body ) against ('court order') as m from article_bodies_42
where match( body ) against ('court order') limit 10;
It returns a set of results like this: (MATCH Value, String)
15.007 ... order ...
10.777 .... court ... order .....
Why is a article with just one word of the query above one with both words?
You'd assume that an article with both words in it ranks higher than an
article with just one word, and that an article with both words in-order
ranks higher than an article with both words far apart.
-Sander