• Oliver Lowe@apubtest2.srcbeat.com
    link
    fedilink
    arrow-up
    14
    ·
    3 months ago

    But, since this particular set of data is so well-defined, and unlikely to change, roll your own is maybe not crazy.

    I think that’s the trick here. A relational database lets you do a whole bunch of complex operations on all sorts of data. That flexibility doesn’t come for free - financially nor performance-wise! Given:

    • engineering chops
    • a firm idea of the type of data
    • a firm idea of the possible operations you may want to do with that data

    then there’s a whole range of different approaches to take. The “just use Postgresql” guideline makes sense for most CRUD web systems out there. And there are architecture astronauts who will push stuff because they can, not because they should.

    Every now and then it’s nice to think about what exactly is needed and be able to build that. That’s engineering after all!