this post was submitted on 08 Nov 2025
149 points (97.5% liked)
Programmer Humor
27428 readers
1631 users here now
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Rules
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
SQLite doesn't do highly concurrent tasks. Your life will be much, much better if you don't even try.
It also doesn't do Windows shared files, because any access into Windows shared files is highly concurrent on the speeds Windows is able to manage its shares.
One small counter point, with WAL, it is much more feasible to manage more concurrency.
I didn't know this! But then again, I don't think I've ever used sqlite on windows before.