• @Asudox@lemmy.world
    link
    fedilink
    79 months ago

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

    • @nierot@lemm.ee
      link
      fedilink
      109 months ago

      I mean it will work, but for a blog I’d store the pages in markdown files, to make it easier to edit. For context, look into how Hugo works

      • @Asudox@lemmy.world
        link
        fedilink
        39 months ago

        I thought of that as well. I might switch to that. It will make the organization better anyways.

    • @kono_throwaway_da@sh.itjust.works
      link
      fedilink
      4
      edit-2
      9 months 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.

    • @slacktoid@lemmy.ml
      link
      fedilink
      English
      39 months ago

      TinyDB literally does this. in general its more of does this work for my use case and am i aware of its limitations.

    • Drew
      link
      fedilink
      29 months ago

      yep, though IO might bottleneck you at some point, and then you can happily switch to mongoDB