this post was submitted on 08 Nov 2025
152 points (97.5% liked)

Programmer Humor

27477 readers
1547 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
[–] marcos@lemmy.world 26 points 2 weeks ago (1 children)

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.

[–] okwhateverdude@lemmy.world 7 points 2 weeks 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.