MongoServer中的MongoServer.Create()和mongoClient.GetServer()之间的性能差异

时间:2013-10-27 06:25:13

标签: c# performance mongodb

考虑以下代码:

     MongoServer mongo = MongoServer.Create();
        mongo.Connect();

        Console.WriteLine("Connected");
        Console.WriteLine();

        MongoDatabase db = mongo.GetDatabase("tutorial");
        Stopwatch stopwatch=new Stopwatch();
        stopwatch.Start();
        using (mongo.RequestStart(db))
        {
            MongoCollection<BsonDocument> collection = db.GetCollection<BsonDocument>("books");

            for (int i = 0; i < 100000; i++)
            {
                var nested = new BsonDocument
                {
                    {"name", "John Doe"},

                };
                collection.Insert(nested);
            }
        }
        stopwatch.Stop();
        Console.WriteLine(stopwatch.ElapsedMilliseconds);

        Console.ReadLine();

在第一行我使用过时的MongoServer.Create()。但是在上面运行时代码输出时间是3056(大约3秒)。

所以我使用MongoDb文档推荐的代码。

 MongoClient mongo = new MongoClient();
            var server = mongo.GetServer();

            MongoDatabase db = server.GetDatabase("tutorial");
            Stopwatch stopwatch = new Stopwatch();
            stopwatch.Start();
            using (server.RequestStart(db))
            {
                MongoCollection<BsonDocument> collection = db.GetCollection<BsonDocument>("books");

                for (int i = 0; i < 100000; i++)
                {
                    var nested = new BsonDocument
                    {
                        {"name", "John Doe"},

                    };
                    collection.Insert(nested);
                }
            }
            stopwatch.Stop();
            Console.WriteLine(stopwatch.ElapsedMilliseconds);

            Console.ReadLine();

当在代码上方运行时,输出时间为14225(在我的电脑上大约10到14秒)。 为什么我在mongoDb的新版本上重构代码后得到了这个性能时间。我错过了什么?

1 个答案:

答案 0 :(得分:2)

在使用推荐的连接模式时,您很可能会看到在较新的驱动程序中默认启用写入问题之间的区别(正如您在第二个示例中所做的那样)。

2012年11月进行了更改:

http://docs.mongodb.org/manual/release-notes/drivers-write-concern/

在此更改之前,默认情况下不会确认写入,因此您会看到“更快”的写入。

有关C#更改here的详细信息。

如果您想尝试新的样式连接,可以在测试中禁用数据库连接的WriteConcern:

MongoDatabase db = server.GetDatabase("tutorial", WriteConcern.Unacknowledged);

然后重新运行测试以比较性能。