• 1 Post
  • 11 Comments
Joined 5 days ago
cake
Cake day: February 26th, 2025

help-circle



  • ColloidalOPtoLearn ProgrammingWhat is NoSQL good for?
    link
    fedilink
    English
    arrow-up
    1
    ·
    edit-2
    16 hours ago

    Right, RDBMS for object permanence is a pain. It’s meant as efficient data storage and retrieval. But I counter that a huge amount of data problems are of that kind, and using object permanence for general database applications seems very contrived. I’m imagining loading a huge amount of data to memory to filter the things you need, essentially rolling your own DBMS. Am I missing something?






  • ColloidalOPtoLearn ProgrammingWhat is NoSQL good for?
    link
    fedilink
    English
    arrow-up
    9
    ·
    edit-2
    20 hours ago

    Let me see if I got it. It would be like a denormalized table with a flexible number of columns? So instead of multiple rows for a single primary key, you have one row (the file), whose structure is variable, so you don’t need to traverse other tables or rows to gather/change/delete the data.

    The downsides are the usual downsides of a denormalized DB.

    Am I close?