Calling all developers! We invite you to provide your input on Feature Experimentation by completing this brief survey.
Hi,
Is it possible to configurate permanent weights to properties from different types?
We need different weights to different types. Will they be uses with unified search?
I saw a lot of examples from documentation where weights add directly to search request.
For example:
searchResult = client.Search() .For("Banana") .BoostMatching(x => x.BlogCategory.Match("fruit"), 2) .GetResult();
var weights = new UnifiedWeightsValues() { SearchTitle = 2.0, SearchText = 1.5, SearchSummary = 1.0, SearchAttachment = 0.5 }; var result = client.UnifiedSearch(Language.English).For("Beethoven").UsingUnifiedWeights(weights).GetResult();
Hi,
Is it possible to configurate permanent weights to properties from different types?
We need different weights to different types. Will they be uses with unified search?
I saw a lot of examples from documentation where weights add directly to search request.
For example: