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

founded 2 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] okwhateverdude@lemmy.world 7 points 1 week ago

SQLite doesn’t do highly concurrent tasks. Your life will be much, much better if you don’t even try.

One small counter point, with WAL, it is much more feasible to manage more concurrency.

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.

I didn't know this! But then again, I don't think I've ever used sqlite on windows before.