如果使用视图,更新 Azure 搜索文档是否会更新我的数据库
Will updating Azure Search Documents update my Database if using a View
我们正在为大型应用程序实施 Azure 搜索实例。我们正在搜索的数据很复杂,分布在许多 table 中,并整合到 Azure SQL 数据库中的一个视图中,该数据库已被索引,这是 Microsoft 代表针对我们特定场景的建议。因此,搜索结果取自一个观点,而不是个人 table 本身。
请问更新一个文件之后,是否还要更新数据库?这不是那么简单,因为它是一个视图,而不是 table。或者更新是否需要并行进行,文档和 table?
谢谢!
Will updating a document then, additionally update the database? This
is not so straightforward because it's a view, not a table. Or will
updating need to take place in parallel, document and table?
如果 document
是指索引中的文档,则更新搜索服务索引中的文档不会对数据库产生影响。
数据源(SQL 数据库)和索引之间的数据流是一种方式,即从数据源到索引。在索引级别完成的任何更新都不会对用于填充索引的数据源进行任何更改。
我们正在为大型应用程序实施 Azure 搜索实例。我们正在搜索的数据很复杂,分布在许多 table 中,并整合到 Azure SQL 数据库中的一个视图中,该数据库已被索引,这是 Microsoft 代表针对我们特定场景的建议。因此,搜索结果取自一个观点,而不是个人 table 本身。
请问更新一个文件之后,是否还要更新数据库?这不是那么简单,因为它是一个视图,而不是 table。或者更新是否需要并行进行,文档和 table?
谢谢!
Will updating a document then, additionally update the database? This is not so straightforward because it's a view, not a table. Or will updating need to take place in parallel, document and table?
如果 document
是指索引中的文档,则更新搜索服务索引中的文档不会对数据库产生影响。
数据源(SQL 数据库)和索引之间的数据流是一种方式,即从数据源到索引。在索引级别完成的任何更新都不会对用于填充索引的数据源进行任何更改。