Click here to Skip to main content
15,894,337 members
Articles / Programming Languages / SQL

How Much Can Sqlite Handle? Multiple Threads Concurrently Inserting Into Sqlite

Rate me:
Please Sign up or sign in to vote.
4.79/5 (7 votes)
22 Mar 2024CPOL13 min read 8.1K   78   14  
An informal study of the Sqlite database and how many concurrent inserts it can handle. Will help you decide if you want to use Sqlite in your projects.
I'm running a sqlite database on my web site backend. I was curious about how much it can handle so I built a little .NET Core console app to exercise a local copy of sqlite with concurrent Inserts using Entity Framework. Along the way, you'll see how easy it is to build an app that uses EF, Sqlite and .NET Core.

Views

Daily Counts

Downloads

Weekly Counts

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) RADDev Publishing
United States United States
"Everything should be made as simple as possible, but not simpler."

Comments and Discussions