I am really new to Laravel and came from .Net backgroud.
I made simple listing page with pagination and load only 3 fields and 5 records with return json with ajax request and it took 200-900ms.
After php artisan optimization it took 50-250ms.
I might ok with this speed but need to find out that am I doing something wrong or missing?
(This test with vagrant.)
With same coding on asp.net (c# & MSSQL) took only 15-20ms
I also mark Laracast site and I thing this one built on Laravel and it's speed is awesome.
Is that using everything caching?
In advance thank you for your answer and need to decide and find future with laravel framework or stick with .Net
Some of MS you can get by caching routes, caching data, disabling things your application don`t use. As you already done optimize will help.
For development purpose 900 is a lot. But much likely i would blame vagrant for that as i have tested multiple times that on native it works much faster that VM
@ajmerainfo If you use vagrant (instead of Homestead) then check my first link. If you use Homestead then add type: "nfs" to your folders section in Homestead.yaml
I have tried to upload on live server with 4GB RAM and 2 Core with all optimization command.
But still same performance like 36-50ms
And I have upload same login with core .Net application on server with 1GB RAM and 1 Core and it gave me 9-12ms :)
@JeffreyWay Any thought on this one? I really love you videos and try to make application from that and found speed issue of laravel.