this post was submitted on 13 Sep 2023
1503 points (98.9% liked)

Memes

45187 readers
1154 users here now

Rules:

  1. Be civil and nice.
  2. Try not to excessively repost, as a rule of thumb, wait at least 2 months to do it if you have to.

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[โ€“] Asudox@lemmy.world 7 points 1 year ago (7 children)

Kind of related question: Is it okay for me to use JSON as a small DB? I just store basic blog page data there.

[โ€“] kono_throwaway_da@sh.itjust.works 4 points 1 year ago* (last edited 1 year ago)

A few circumstances to consider...

If it's just your own little tool and you don't intend to share it with others: do whatever you want. SQL or NoSQL or JSON, it doesn't matter. Use your own judgement.

In my experience tho most homegrown JSON-based "databases" tend to load all data into the memory, simply because they are very simplistic (serialize everything into JSON and write to disk, deserialize everything into a struct). If your dataset is too big for that, just go straight for a full-fledged database.

load more comments (6 replies)