Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SQL Server Vs MongoDB : Speed test?

MongoDB:

var x = nosql.GetRecords<Event>(p => p._Data == "rawhix", 0, 12222);
// ICursor<T> GetRecords<T>(expression, skip, limit);

SQL:

SqlDataReader dr = SqlHelper.ExecuteReader("Select Top(12222)* From NewsFeed WHERE _Data = 'dddd'");

the MongoDB contains 1000000 record which are the same in the SQL .
the data stored as the following:

Id = 1 , _Data = 1abc
Id = 2 , _Data = 2bc 
... etc

Event class :

Class Event => int Id => string _Data 

when I run the code the result is:
Mongo : 580ms
SQL : 102ms

Should I do anything to fix this !! because the mongo was always faster except this test !?!

like image 984
Rawhi Avatar asked Apr 12 '26 21:04

Rawhi


1 Answers

You need an index. Run this in the mongo console:

db.Events.ensureIndex({_Data:1});

or you can call it through the C# driver:

MongoDatabase db = server.GetDatabase("your_db_name");
MongoCollection<Event> events = hr.GetCollection<Event>("events");
employees.EnsureIndex("_Data");

You wouldn't want to do this on every call though since it is another call to the DB and will have a very tiny performance hit.

like image 50
James Avery Avatar answered Apr 14 '26 10:04

James Avery



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!