从 Azure 搜索 select 单个文档的最快方法
Fastest way to select a Single Document From Azure Search
是否有任何首选(最快)的方式来 select 来自 Azure 搜索的单个文档,或者是否必须使用其 ID 等发出查询。
非常感谢
如果您使用的是 REST API:https://docs.microsoft.com/rest/api/searchservice/lookup-document
如果您使用的是 the.NET SDK:searchIndexClient.Documents.Get("Put your document ID here")
是否有任何首选(最快)的方式来 select 来自 Azure 搜索的单个文档,或者是否必须使用其 ID 等发出查询。 非常感谢
如果您使用的是 REST API:https://docs.microsoft.com/rest/api/searchservice/lookup-document
如果您使用的是 the.NET SDK:searchIndexClient.Documents.Get("Put your document ID here")