November Happy Hour will be moved to Thursday December 5th.
November Happy Hour will be moved to Thursday December 5th.
A best bet needs to be in the resultset, if so it'll be moved up as the first hit.
Actually, I _believe_ the page should be returned even if it isn't in the resultset as long as there isn't a filter applied that excludes it. Could you try to remove the best bet and add it again to eliminita any weird referencing errors?
I've added and removed it a number of times now with no luck.
I have also setup another scenario as per Johans response where the page for the best bet is in the search result set. Even in this scenario, the result is not displayed to the top (it is actually the last result in a result set of 4 pages).
Hmm, seems really strange. Do you specify language when you add the best bet?
Nope - I'm not specifying a site identity either so both the language and site are set to 'All'.
Hmm, I'm afraid I'm at a loss. Is the code you posted the _exact_ code you are using? If so, could you try and see if calling ApplyBestBets before Take makes any difference. It shouldn't, but...
Thanks Joel - Have tried moving the ApplyBestBets but still no luck.
How does best bets actually work?
I have been watching the json requests sent to Find in fiddler and there are no differences between the queries when ApplyBestBets() is added to the query or not.
The criteria (searched text, language etc) and best bet "target" (reference to the page) is stored in the database (in the DDS). ApplyBestBets retrieves all best bets from the database (or rather cache) and sees if there is any whos criteria matches the query in the search request. If a match is found the search request is modified to include the page explicitly + a major boost factor for it.
If you're not seeing any difference in Fiddler it seems the query isn't modified meaning most likely that the criteria doesn't match. As for why I can't really say.
Can you get it to work with a different page and search term?
Also, IF the code you posted above is abbreviated or somehow different than from what you're running I'd love to see the exact code you are using?
The code is exact, except that I pass in the term as a parameter so its not hardcoded to "red".
I am still running the example described by Johan where the page I have applied the best bet to is in my search results. For clarity this is what I have setup.
Best Bet Setup
Term: 'cheese'
Best Bet: Yarg (page:23)
All Sites, All Languages
(This page Yarg contains the word cheese on it)
After running the following query:
var query =
SearchClient.Instance.UnifiedSearchFor("cheese")
.Take(100)
.ApplyBestBets();
I get a resultset of 5 matches (lots of cheese on my website!) where the Yarg page is in the 5th position.
first result score = 2.3443196
fith result score = 0.36629993
You selected "all languages, but do you have any supported languages installed on your index?
I took quick look in the OptimizationsSearchExtensions class, and it might look like there is a supported languages check that fails if you do not have any supported languages installed in your index - it will exit before trying to fetch any best bets.
When I created the index, I selected English - I dont thinks it possible to create an index without selecting a lanauge.
My site is configured to use en-GB. I can see in the index explorer my pages contain a language ID of en-GB.
Could this be the problem - Does my site need to be using just EN?
Im not really in the position to change my site language to EN as its alreday full of en-GB content.
Ah! With an on-premise installation you do not need to select a language. You should not need to change your site language. But you could try to change your query to this:
UnifiedSearchFor("red", Language.English)
I think that should work.
YES! Thanks Per - That has fixed it :)
Also to note - As Joel said, the best bet page does not need to be in the results set of the search to appear.
Many thanks for the help guys.
Adam
Also to note - As Joel said, the best bet page does not need to be in the results set of the search to appear.
Great! I'm sure this was the case in earlier in the service though (not the client libs). Can't recall if I got feedback that it was fixed and it wasn't a big deal for us or client.
Johan, either that or I misinformed you. I do recall having said at some point that it did have to be in the result :)
I am having issues using ApplyBestBets() on a query.
I have creted a best bet in my find index to return a result for the term "red".
The page I have set to be returned for "red" does not contain the word at all.
I have created a search in c# like this:
When running the code, zero results are returned.
I have ensured the page that "red" is meant to return as per the best bet has been indexed and when using the same query to search for a term that is on that page, the page is returned correctly.
I am using the latest version of the EPiServer Find dll's (7.0.586.16)
Am I miss understand how best bets works or doing something wrong?
Thanks,
Adam