我正在嘗試搜索Algolia,並且某個類別的搜索結果顯示在所有其他類別之前。如果你搜索pot
然後阿爾戈利亞首先搜索某個類別的搜索
數據在Algolia
{ name: Harry Potter, category: book},
{ name: The Avengers, category: movie},
{ name: Pottery, category: movie}
問題
比方說正常Algolia算法Harry Potter
方式比電影Pottery
更具相關性,因此通常:下面是一個例子Harry Potter
會顯示在Pottery
之前。
我想通過Algolia搜索字詞pot
和類別movie
,然後Pottery
顯示在所有其他內容之前。它需要是動態的,即我應該能夠搜索pot
類別book
並首先得到Harry Potter
。
Algolia有沒有辦法做到這一點?
我需要類似的東西,但更復雜:http://stackoverflow.com/questions/41166479/complex-featured-product-model-using-query-time-ranking-optional-filters將不勝感激任何幫幫我! –