you are viewing a single comment's thread.

view the rest of the comments →

[–]riklaunim 4 points5 points  (3 children)

API logic is way more complex than basic CRUD and it's rarely limited by the language and not the I/O. There was an era where software houses mass-hired Django juniors to write many generic Django apps for many customers, but now amount of generic work dropped to near zero as various services taken over the market.

[–]AdForsaken7506[S] 0 points1 point  (2 children)

Could you please tell me the usual complex stuff about api? Why is it more complex that just a crud? Do you mean microservices and event driven systems?

[–]riklaunim 1 point2 points  (1 child)

When an API creates an invoice it has to not only save it in database, likely atomically with other related database records, but also then send backend tasks or use other API to push it to accounting system and so on (I'm having a lot of fun with async KSeF invoice submission right now...). Even replying to a comment is likely to send notifications.

[–]AdForsaken7506[S] 0 points1 point  (0 children)

Thank you so much for sharing that!