0
我有類似這一項上AzureSearch索引:根據AzureSearch中的某些參數優先搜索結果。
"fields": [
{
"name": "key",
"type": "Edm.String",
"filterable": true,
},
{
"name": "title",
"type": "Edm.String",
"searchable": true
},
{
"name": "followers",
"type": "Collection(Edm.String)",
"filterable": true,
}
]
這裏,title
爲柱,並且其文本搜索的稱號。 followers
包含遵循特定帖子的用戶的用戶ID。
我正在從會話中獲取當前登錄的userId
。現在,當用戶進行一些文本搜索時,我想將這些帖子顯示在當前用戶所關注的頂部。
請使用ScoringProfiles或其他方法告訴AzureSearch可以實現嗎?