本文介绍了每个文档库WaitForNonStaleResults的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
有没有办法告诉RavenDb使用WaitForNonStaleResults模式在一些文档库或DocumentSession的所有查询?
Is there any way to tell RavenDb to use WaitForNonStaleResults mode for all queries of some DocumentStore or DocumentSession?
推荐答案
您可以使用 DefaultQueryingConsistency = ConsistencyOptions.QueryYourWrites
在文档库或会话的水平。
You can use DefaultQueryingConsistency = ConsistencyOptions.QueryYourWrites
at the DocumentStore or Session level.
文档库:
IDocumentStore store = new DocumentStore {
Url = "http://127.0.0.1:8080",
DefaultDatabase = "DBNAME",
Conventions = {
DefaultQueryingConsistency = ConsistencyOptions.QueryYourWrites
}
}.Initialize();
会话:
session.Advanced.Conventions.DefaultQueryingConsistency =
ConsistencyOptions.QueryYourWrites;
请记住这个机制不适合工作的map-reduce指数
您可以检查马特的评论对此事低于
You can check Matt's comments on this matter below
这篇关于每个文档库WaitForNonStaleResults的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!