/top/
/new/
/best/
/ask/
/show/
/job/
^
slacker news
login
about
←back to thread
Taylor Otwell: What 14 Years of Laravel Taught Me About Maintainability
(maintainable.fm)
105 points
robbyrussell
| 3 comments |
26 Aug 25 12:37 UTC
|
HN request time: 0.001s
|
source
Show context
phplovesong
◴[
30 Aug 25 15:27 UTC
]
No.
45075453
[source]
▶
>>45025685 (OP)
#
Laravel is using a outdated MVC model, its slow as hell and finally its purpose is basically to put lipstick on what is php.
replies(1):
>>45077211
#
hu3
◴[
30 Aug 25 19:14 UTC
]
No.
45077211
[source]
▶
>>45075453
#
Laravel is slow. But it's mostly because of all the monkey patching it allows.
A quick hack to solve current issue often becomes a maintenance nightmare for large systems.
replies(1):
>>45080360
#
N2yhWNXQN3k9
◴[
31 Aug 25 04:23 UTC
]
No.
45080360
[source]
▶
>>45077211
#
Laravel is slow because it uses reflection like it is free, and it doesn't even need reflection really. Its just a marketing gimmick, IMO.
replies(1):
>>45080877
#
1.
stefanfisk
◴[
31 Aug 25 06:35 UTC
]
No.
45080877
[source]
▶
>>45080360
#
Could you expand on how it uses reflection in a manner that incurs a performance hit?
replies(1):
>>45083852
#
ID:
GO
2.
ebcode
◴[
31 Aug 25 15:20 UTC
]
No.
45083852
[source]
▶
>>45080877 (TP)
#
Reflection by itself is a performance hit.
replies(1):
>>45090566
#
3.
stefanfisk
◴[
01 Sep 25 07:58 UTC
]
No.
45090566
[source]
▶
>>45083852
#
Sure, that doesn't imply that every complex piece of code that uses reflection is slower than the competition. When profiling Laravel app's my experience is not that reflection is taking up any significant part of the request duration.
↑