In my search.php template, I am using
$selector = "title|body%=$search_term, limit=50"; to find the top 50 search results for the page.
I implemented this following this link https://processwire.com/api/selectors/
My question is how does the selector sort its results? Does it look at the number of time the $search_term has occurred in the page or does it start searching from the root page to all the children.
Also, will this change if I do not put any limits to the search results?