Lumen – A micro-framework by Laravel
21–30 of 116 posts
Re: Lumen – A micro-framework by Laravel
#22Re: Lumen – A micro-framework by Laravel
#23Earlier quoted context omitted.
Anyone still hating on PHP in 2015 is doing it wrong.
Saying "it's the wrong tool for the job" and hating on it are two different things.
PHP in 2015 means great frameworks like Symfony/Laravel, high performance with HHVM (and soon PHP7), good package management with Composer, etc. It has made great strides.
Re: Lumen – A micro-framework by Laravel
#24The drop in functionality right into the full framework is fantastic. Really like the ability to write API's with much less overhead, which was a factor that came into play for me recently. Nicely done Mr. Otwell.
Re: Lumen – A micro-framework by Laravel
#25If Lumen can use all Laravel its components, can't Laravel use Lumen its routing engine or whatever makes it that fast? What's the key difference that Lumen is considered "fast and micro" over a standard Laravel installation?
My understanding is that the majority of the advertised speed increase has to do with lazy initialization of the request/response stuff and the need to expressly ask for things like session support.
e: Here's an explanation from reddit, http://www.reddit.com/r/PHP/comments/32kajb/lumen_php_microf...
Re: Lumen – A micro-framework by Laravel
#26Has the experience remained the same? PHP was incredibly simple to deploy.
Re: Lumen – A micro-framework by Laravel
#27Looks really interesting. PHP may not be the "hip" language to use (although it's getting better), but it's so popular and accessible that disregarding it as a legitimate option for new projects is myopic.
Re: Lumen – A micro-framework by Laravel
#28How painless is deploying a Lumen/Laravel application? I used to use PHP back in 2006 and I remember deploying was as easy as pushing a .php file via FTP. Has the experience remained the same? PHP was incredibly simple to deploy.
Re: Lumen – A micro-framework by Laravel
#29The drop in functionality right into the full framework is fantastic. Really like the ability to write API's with much less overhead, which was a factor that came into play for me recently. Nicely done Mr. Otwell.
Re: Lumen – A micro-framework by Laravel
#30If Lumen can use all Laravel its components, can't Laravel use Lumen its routing engine or whatever makes it that fast? What's the key difference that Lumen is considered "fast and micro" over a standard Laravel installation?
The routing engine is NikiC's excellent FastRoute: https://github.com/nikic/FastRoute My understanding is that the majority of the advertised speed increase has to do with lazy initialization of the request/response stuff and the need to expressly ask for things like session support. e: Here's an explanation from reddit, http://www.reddit.com/r/PHP/comments/32kajb/lumen_php_microf...
Laravel's strength is that it is batteries included but for some stuff this can be a weakness, API's where that 30-40ms load time matters for example.
I've spent a couple of years working with and on laravel projects and mostly I like it a great deal but it is a sledgehammer when sometimes you need a ballpein.