RavenDB慢读

时间:2013-04-02 18:20:33

标签: c# .net database ravendb

我正在使用RavenDB,但我注意到我的数据库在阅读时非常慢。以下是我查询数据库的方法:

        IEnumerable<Reduced> items;
        Filter filter = (Filter)Filter;

        var watch = Stopwatch.StartNew();
        using (var session = documentStore.OpenSession())
        {

            var query = session.Query<eBayItem,eBayItemIndexer>().Where(y => y.Price <= filter.MaxPrice && y.Price >= filter.MinPrice); 
            query = filter.Keywords.ToArray()
            .Aggregate(query, (q, term) =>
                q.Search(xx => xx.Title, term, options: SearchOptions.And));
           if (filter.ExcludedKeywords.Count > 0)
            {
                query = filter.ExcludedKeywords.ToArray().Aggregate(query, (q, exterm) =>
                q.Search(it => it.Title, exterm, options: SearchOptions.Not));
            }
           items = query.AsProjection<Reduced>().ToList();
           Console.WriteLine("Query: " + query.ToString());
           Console.WriteLine("Results: " + items.Count());
        }
        watch.Stop();
        Console.WriteLine("Query time: " + watch.Elapsed.Milliseconds + " ms");
        return items;

输出:

  • 查询:Price_Range:[* TO Dx600]和Price_Range:[Dx400 TO NULL] AND标题:(佳能)AND标题:(MP)AND标题:(黑色) - 标题:(G1) - 标题:(T3)
  • 结果:3
  • 查询时间:365毫秒

索引:

public class eBayItemIndexer : AbstractIndexCreationTask<eBayItem>
{
    public eBayItemIndexer()
    {
        Map = contentItems =>
            from contentItem in contentItems
            select new { contentItem.Title, contentItem.Price };

        Index(x => x.Title, FieldIndexing.Analyzed);
        Index(x => x.Price, FieldIndexing.Analyzed);


        TransformResults = (database, items) =>
            from contentItem in items
            select new { contentItem.Id };
    }
}

初始化:

        documentStore = new EmbeddableDocumentStore() { DataDirectory = "test.db" };
        documentStore.Initialize();
        IndexCreation.CreateIndexes(typeof(eBayItemIndexer).Assembly, documentStore);
        documentStore.Configuration.TransactionMode = Raven.Abstractions.Data.TransactionMode.Lazy;
        documentStore.Configuration.AllowLocalAccessWithoutAuthorization = true;

他们的代码是否有问题导致它变慢?

2 个答案:

答案 0 :(得分:0)

EmbeddableDocumentStore可能就是问题所在。更确切地说,看起来您正在初始化商店,然后立即调用查询。对索引的前几个查询总是会慢一些。

答案 1 :(得分:0)

我有一个与此类似的问题,并且我正在使用专用服务器(非嵌入式)。我发现的问题是我在查询时而不是事前在应用程序负载时初始化文档存储。

如果在本机程序上运行,请在启动过程中初始化文档存储并将其保持为单例,直到您要关闭程序。您只需要一个文档存储,但是您应该为每个原子操作创建一个新会话。

如果要在Web应用程序中运行此文件,请在应用程序启动时将文档存储注册为您选择的依赖项注入容器中的单例作用域。

这两个选项中的任何一个都会尽早初始化文档存储并保持打开状态。然后,您只需要为每个查询打开一个会话。当一个普通Guid从200万条总记录中查询大约300条记录时,我的时间从2秒钟增加到了150ms。如果您的数据库较小,则该数目应该大大减少。