gpt4 book ai didi

.net - 与真正的本地 Raven 实例相比,使用 RavenDb EmbeddableDocumentStore 的测试非常慢

转载 作者:行者123 更新时间:2023-12-01 08:00:48 25 4
gpt4 key购买 nike

总结:我想使用 EmbeddableDocumentStore(the recommended approach 我相信)对使用 IDocumentSession 的类进行单元测试。与使用“真实的”、本地托管的 DocumentStore 创建的 session 相比,使用静态索引的简单测试运行非常慢。运行了一些基本的分析 - 大约 慢 7 倍(见下文)。我不能使用 RavenTestBase最终我想使用 this approach to test using SpecsFor .

我原以为使用内存存储的测试会非常快 - 我是不是做错了什么来解释这种性能?

编辑:Having read this我禁用了我的防病毒软件,这没有任何区别。

两种方式的区别:

我通过以下方式创建了一个EmbeddableDocumentStore:

    private static IDocumentStore CreateInMemoryEmbdeddableDocumentStore()
{
var embeddedStore = new EmbeddableDocumentStore();
embeddedStore.Configuration.RunInMemory = true;
embeddedStore.Configuration.RunInUnreliableYetFastModeThatIsNotSuitableForProduction = true;
embeddedStore.RegisterListener(new NoStaleQueriesAllowedListener());
return embeddedStore.Initialize();
}

和“真正的”DocumentStore 作者:

    public IDocumentStore CreateLocalDocumentStore()
{
var store = new DocumentStore { Url = "http://localhost:8080", DefaultDatabase = "ColourTest" };
store.RegisterListener(new NoStaleQueriesAllowedListener());
return store.Initialize();
}

在这两种情况下我都使用它来确保在获取查询结果之前已经建立索引:

    public class NoStaleQueriesAllowedListener : IDocumentQueryListener
{
public void BeforeQueryExecuted(IDocumentQueryCustomization queryCustomization)
{
queryCustomization.WaitForNonStaleResults();
}
}

然后我通过以下方式获得 session :

    private static IDocumentSession ConfigureIndexesAndCreateSession(IDocumentStore store)
{
IndexCreation.CreateIndexes(typeof(Colours_ColourCountByMood).Assembly, store);
return store.OpenSession();
}

使用此 session ,我设置了测试数据(对于真实商店,我也先删除了现有数据)。像往常一样,我然后运行 ​​method being tested - 使用 static index - 并做一个断言。

将性能与分析进行比较:

我还添加了 logging calls through the code (see complete code here)比较两种情况下的时间。测试运行的示例结果:

TestUsingInMemoryEmbeddable()
191 ms : Start create EmbeddableDocumentStore
1819 ms : Finish create EmbeddableDocumentStore
1819 ms : Start embeddedStore.Initialize()
3411 ms : Finish embeddedStore.Initialize()
3411 ms : Start CreateIndexes
5322 ms : Finish CreateIndexes
5322 ms : Start OpenSession
5330 ms : Finish OpenSession
5331 ms : Start test data storing
5852 ms : Finish test data storing
5853 ms : Start test Act
6985 ms : Finish test Act
6985 ms : Start test Assert
6998 ms : Finish test Assert

TestUsingLocallyHosted()
1 ms : Start create DocumentStore
1 ms : Finish create DocumentStore
2 ms : Start documentStore.Initialize()
608 ms : Finish documentStore.Initialize()
608 ms : Start CreateIndexes
717 ms : Finish CreateIndexes
717 ms : Start OpenSession
717 ms : Finish OpenSession
718 ms : Start DeleteTestData
730 ms : Finish DeleteTestData
730 ms : Start test data storing
823 ms : Finish test data storing
823 ms : Start test Act
957 ms : Finish test Act
957 ms : Start test Assert
957 ms : Finish test Assert

运行这些次数后,以上数字具有代表性:在运行嵌入式时,相对缓慢在整个测试代码中是明显的/固有的。

最佳答案

您需要直接在 EmbeddableDocumentStore 上使用 RunInMemory 属性。

此外,您可能希望多次运行该程序以查看时间安排。我们正在做大量前期工作以降低总体成本。

关于.net - 与真正的本地 Raven 实例相比,使用 RavenDb EmbeddableDocumentStore 的测试非常慢,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22567784/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com