|
|
|
|
|
by Lukas_Skywalker
171 days ago
|
|
I don‘t like dismissing technologies on the basis of being „magic“, since the magic could often just as well be called abstraction, and the line between them is often personal preference. The abstracted-away logic in a Laravel application can either be called magic or abstraction, but so can the optimizations of a database query planner. I think often you still need to know the underlying mechanism, but it is still useful to get the innards out of the way. |
|
Spring Boot and other similar frameworks come to mind; by forcing huge amounts of indirection you lose a lot of visibility of your call stack because the convenient "glue" code is now orchestrating everything at runtime, but that code isn't yours, and it isn't easily inspected or fixed.