将BSON文档添加到列表非常慢

时间:2017-02-07 21:28:40

标签: c# .net mongodb batch-insert

for (int k = 1; k < list.Count(); k++)
        {
            List<BsonDocument> batch = new List<BsonDocument>();
            for (int i = 0; i < list[k].Count() - 1; i++)
            {
                var obj = new Dictionary<string, object>();
                obj.Add("Status", false);
                obj.Add("Headers", new BsonArray(list[0].ElementAt(0).ItemArray));
                List<string> formattedArray = new List<string>();
                for (int j = 0; j < list[k].ElementAt(i).ItemArray.Count(); j++)
                {
                    formattedArray.Add(JsonConvert.SerializeObject(list[k].ElementAt(i).ItemArray[j]));   
                }
                obj.Add("Values", new BsonArray(formattedArray.ToArray()));
                MongoDB.Bson.BsonDocument BSONDoc = new BsonDocument(obj);
                batch.Add(BSONDoc);
            }
            Insert(batch);
            batch.Clear();
        }
  

list.Count()= 121

     

list [k] .Count()= 10000

     

list [k] .ElementAt(i).ItemArray.Count()= 137

1 个答案:

答案 0 :(得分:0)

以下是我的一些建议。

1)将列表[k] .Count()分配到循环外的变量中。

2)新的BsonArray(list [0] .ElementAt(0).ItemArray)。您可以获取此一次并将其分配给标头。无需多次去。

3)最后,运行Benchmark(使用秒表)查看更耗时的部分。