Skip to content

Shallow comparative analysis of SQL and NoSQL databases CRUD performance in .NET

License

Notifications You must be signed in to change notification settings

shakenovdev/EmbeddedDatabaseBenchmark.NET

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Shallow comparative analysis of CRUD operations performance among SQL/NoSQL Embedded databases in .NET Core

SQLite / SQL Server Express LocalDB / Realm .NET / LiteDB

Versions of compared database that have been used in analysis can be found in source code.

The analysis shows the execution time to perform N operations (Create/Update/Read/Delete) using same entity type.

Databases` settings are not modified after installation, no performance adjusments were made.

For time measurements tool System.Diagnostic.Stopwatch was chosen. The time unit is ms. Timer starts when transaction opens and ends once transaction is closed.

Entity type:

public class DataUnit
{
    public int Id { get; set; }
    public string Name { get; set; }
    public int Sum { get; set; }
}

In order to complete the analysis, queries are executed in separate iterations of 1_000, 10_000 and 100_000 operations.


N=1_000 CREATE READ UPDATE DELETE
SQLite 16 10 20 19
SQL Server LocalDB 122 139 159 142
Realm 14 19 12 25
LiteDB 822 26 529 813

N=10_000 CREATE READ UPDATE DELETE
SQLite 75 108 94 76
SQL Server LocalDB 1257 1645 1662 1199
Realm 210 93 130 1159
LiteDB 8864 300 10653 11298

N=100_000 CREATE READ UPDATE DELETE
SQLite 966 1610 1214 1090
SQL Server LocalDB 14545 15903 15872 12738
Realm 1242 554 738 321127
LiteDB 106493 3506 118285 119198

The comparative analysis doesn't pretend to exalt one over others, it represents what you can expect from database performance in most simple ways. The database effiency can be different in various situation with various data. The conclusion what to choose is up to you.

About

Shallow comparative analysis of SQL and NoSQL databases CRUD performance in .NET

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages