this post was submitted on 02 Mar 2024
413 points (96.6% liked)

Programmer Humor

32192 readers
454 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] Bye 9 points 7 months ago (2 children)

How come people use sql instead of just using text files? I just use text files for everything

[–] lightnegative 7 points 7 months ago* (last edited 7 months ago) (1 children)

What are text files if not binary blobs on disk?

What is SQL if not a query layer over a bunch of binary blobs on disk?

[–] Klear 4 points 7 months ago
[–] [email protected] 1 points 7 months ago

@Bye @devilish666 file systems are a good replacement for a database for many use cases. however: some file systems are bad at handling many small files. also databases can do indexes, which file-systems can't: they are key-value stores