我正在使用MongoDB C#驱动程序v2.6.1,并在多线程环境中插入文档。我想改善写操作。这就是我的做法。
IMongoDatabase mongodb = iapplicationhelper.GetDatabase("TransactionLogDB");
var col = mongodb.GetCollection<TransactionRequestModel>("TransactionLog");
col.InsertOne(model);
还有其他方法可以加快写入操作吗?