インデックスが次のように構成されているとします。
{
"Error": null,
"IsSuccess": true,
"StatusCode": 201,
"Body": {
"name": "test-want-index",
"fields": [
{
"name": "Id",
"type": "Edm.String",
"searchable": false,
"filterable": false,
"sortable": false,
"facetable": false,
"suggestions": false,
"key": true,
"retrievable": true
},
{
"name": "Title",
"type": "Edm.String",
"searchable": true,
"filterable": false,
"sortable": false,
"facetable": false,
"suggestions": true,
"key": false,
"retrievable": true
},
{
"name": "Description",
"type": "Edm.String",
"searchable": true,
"filterable": false,
"sortable": false,
"facetable": false,
"suggestions": true,
"key": false,
"retrievable": true
},
],
"scoringProfiles": [],
"defaultScoringProfile": null,
"corsOptions": null
}
}
このデータが取り込まれます:
Id:123, Title:starbucks, Description:coffee that is good
Id:456, Title:big b, Description:coffee that is bad
Id:789, Title:elk brand, Description:we have elk stars
ユーザーが次のクエリを入力すると、starbucs coffee
次のことができるようにインデックス フィールドを構成することは可能ですか。
- ID 123 と ID 456 のアイテムに一致
- あいまい検索 (または提案?) タイトルと説明
ノート:
stabuck
候補の検索語として入力すると、id 123 が返されますcoffee
候補の検索語として入力すると、id 456 が返されます- 入力
starbucs coffee
しても何も返されません。←私の問題。