這篇文章主要介紹了c#操作MongoDB插入數(shù)據(jù)效率的示例分析,具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
創(chuàng)新互聯(lián)堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:做網(wǎng)站、成都網(wǎng)站制作、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時(shí)代的威信網(wǎng)站設(shè)計(jì)、移動(dòng)媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!
mongodb的數(shù)據(jù)插入速度是其一個(gè)亮點(diǎn),同樣的10000條數(shù)據(jù),插入的速度要比MySQL和sqlserver都要快,當(dāng)然這也是要看使用者怎么個(gè)使用法,你代碼如果10000次寫入使用10000次連接,那也是比不過其他數(shù)據(jù)庫使用事務(wù)一次性提交的速度的。
同樣,mongo也提供的一次性插入巨量數(shù)據(jù)的方法,因?yàn)閙ongodb沒有事務(wù)這回事,所以在在C#驅(qū)動(dòng)里,具體方法是InsertManyAsync()一次性插入多個(gè)文檔。與之對(duì)應(yīng)的是InsertOneAsync,這個(gè)是一次插入一個(gè)文檔;
InsertManyAsync()這個(gè)方法帶入的參數(shù)只要是實(shí)現(xiàn)了IEnumerable接口的類型就可以,所以可是list<>,這樣的數(shù)據(jù)類型;
同樣的10000次插入,兩個(gè)方法時(shí)間差別很大。如圖:
使用一次性插入多個(gè)文檔方法,插入10000條耗時(shí)僅1.3秒,分成10000次插入,耗時(shí)19.9秒。區(qū)別大了個(gè)去。同樣,前面我做過使用mysql插入10000條記錄,要用4秒多,可見,這mongodb插入速度不是吹 的。
具體的代碼如下,貼上:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using MongoDB.Bson; using MongoDB.Driver; using System.Diagnostics; namespace sqltomongo { public class MongoHelp { private static IMongoClient client { get { if (null == _client) { _client = new MongoClient("mongodb://127.0.0.1:27017"); } return _client; } } public static IMongoDatabase database { get { _database = client.GetDatabase("HotelPersonInfo"); return _database; } set { _database = value; } } public static IMongoCollectioncollection { get { return _collection; } set { _collection = value; } } protected static IMongoClient _client; protected static IMongoDatabase _database; protected static IMongoCollection _collection; //測試效率,兩個(gè)方法用時(shí)比較 public async static void TestMongo() { //自定義的對(duì)象 RoomInfo roomdata = new RoomInfo(); List docunemts = new List (); collection = database.GetCollection ("HotelPersonInfo"); Stopwatch sw = new Stopwatch(); sw.Start(); for (int i = 1; i < 10000; i++) { //mongo對(duì)用戶自定義的對(duì)象擴(kuò)展了tobasonDocument這個(gè)方法,可直接用 var roomdatadocument = new BsonDocument(roomdata.ToBsonDocument()); docunemts.Add(roomdatadocument); } //一次10000條 //這方法 查看api手冊(cè),只要實(shí)現(xiàn)了IEnumerable借口的類型就都行 await collection.InsertManyAsync(docunemts); sw.Stop(); TimeSpan ts2 =sw.Elapsed; Console.WriteLine("total is " + ts2.TotalMilliseconds); ///一次次插 10000次 Stopwatch sw2 = new Stopwatch(); sw2.Start(); for (int i = 1; i < 10000; i++) { var roomdatadocument = new BsonDocument(roomdata.ToBsonDocument()); await collection.InsertOneAsync(roomdatadocument); } sw2.Stop(); TimeSpan ts22 = sw2.Elapsed; Console.WriteLine("total is " + ts22.TotalMilliseconds); // await collection.InsertOneAsync(roomdatadocument); //collection = database.GetCollection ("HotelPersonInfo"); // collection.InsertOneAsync(roomdatadocument); } } }
里面使用了一個(gè)自定義的對(duì)象:
代碼如下:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using MongoDB.Bson; namespace sqltomongo { public class RoomInfo { public RoomInfo() { // id = "test"; Name = "nafd"; Moblie = "123456"; EMail = "dd@qq.com"; Tel = "010123"; Fax = "0755-001"; IdentityId = "616112323231"; RegisterType = "tid"; CardNo = "cardno"; Sex = "男"; Birthday = "1999"; Address = "china beijing"; ZipCode = "519000"; RegisterDate = "2015-03-03"; District2 = "District2"; District3 = "District3"; District4 = "District4"; } // public string id { get; set; } ////// 名字 /// public string Name { get; set; } ////// 手機(jī)號(hào)碼 /// public string Moblie { get; set; } ////// 郵箱 /// public string EMail {get;set;} ////// 座機(jī) /// public string Tel { get; set; } ////// 傳真 /// public string Fax { get; set; } ////// 身份證 /// public string IdentityId { get; set; } ////// 使用什么注冊(cè)的 /// ID --身份證 (只需要id身份證的信息) /// public string RegisterType { get; set; } ////// 會(huì)員卡號(hào) /// public string CardNo { get; set; } ////// 性別 /// public string Sex { get; set; } ////// 生日 /// public string Birthday { get; set; } ////// 地址 /// public string Address { get; set; } ////// 郵編 /// public string ZipCode { get; set; } public string District2 { get; set; } public string District3 { get; set; } public string District4 { get; set; } ////// 注冊(cè)時(shí)間 /// public string RegisterDate { get; set; } } }
感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“c#操作mongodb插入數(shù)據(jù)效率的示例分析”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來學(xué)習(xí)!