Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 Azure 搜索中的单个文档上进行插入、更新、删除和选择,最好使用 .NET 库。
预先感谢您的回复。
ISearchIndexClient.Documents文档 CRUD 操作在属性上可用。使用GetorGetAsync方法按键检索单个文档。使用IndexorIndexAsync方法上传、合并或删除文档。
ISearchIndexClient.Documents
Get
GetAsync
Index
IndexAsync
请注意,您应该尽可能尝试批量处理文档写入操作。一次上传/合并/删除单个文档的效率非常低,这就是为什么Index需要一个IndexBatch作为参数的原因。您一次最多可以批处理 1000 个写入操作。
IndexBatch