Those who know, know.

  • evatronic@lemm.ee
    link
    fedilink
    English
    arrow-up
    6
    ·
    7 months ago

    I am literally in the middle of swapping DynamoDB for a RDBMS.

    The idea that you can abstract away such fundamentally different data stores is silly. While I hate doing it now, reworking the code to use relational models properly makes for a better product later.

    • Caveman@lemmy.world
      link
      fedilink
      arrow-up
      1
      ·
      7 months ago

      I’m going to suggest not using an ORM. I used three so far and it really likes to tell you what you can and can’t do when query builders can do the same thing by creating the SQL string for you. SQL is also very nice and easy (just parameterise all inputs to avoid the SQL injection)