this post was submitted on 09 Aug 2024
609 points (97.8% liked)

Programmer Humor

32360 readers
868 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 

Those who know, know.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 5 points 2 months ago (2 children)

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.

[–] [email protected] 1 points 2 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)

[–] [email protected] 2 points 2 months ago (1 children)

It's literally what an orm does, and it's good enough for 80% of apps out there. Using it for the wrong purpose is what's silly.

[–] [email protected] 1 points 2 months ago* (last edited 2 months ago) (1 children)

I see. It seems like you may be one of the people that try to coerce relational models into nosql stores like Dynamo.

Or course it's possible. They even trick you into thinking it's a good pattern by naming things "tables".

But if you're using Dynamo to its fullest an ORM is not going to be able to replicate that into a relational store without some fundamental changes.

[–] [email protected] 1 points 2 months ago

Hence 80%.

Most apps out there are a CRUD with a thin layer of logic.

If you are in the 20% that needs real performance, an ORM is not gonna cut it, no matter what DB you have.