如何最有效地使用InsertManyAsync()?

时间:2016-03-30 14:21:13

标签: c# mongodb

public void AddRange(IEnumerable<T> newRecords)
{
  _mongoDatabaseStorageService.WithRecords<T>(e => e.InsertManyAsync(newRecords).Wait());
}

newRecords有多大?我的意思是我可以将多少元素设置为InsertManyAsync()并且具有最佳性能(1000,10 000,100 000)任何建议?

0 个答案:

没有答案