I'm doing my development on laragon but I think it is too slow.
Load time is about 800 ms to a few seconds.
Would the docker and linux sub system faster?
Would it cause any problem later on when I deploy my app on Windows server?
@vincent15000 Just normal loading of a landing page would take that long. It was averaging around 900ms.
It is in debug mode with debug bar enable but it just slows development right down. Every time I make any changes in the view and save, I have wait a bit for the page to re-load.
I enable the opcach on the PHP and the load time was reduced to 200ms which is a bit better.
I was expecting it to be a bit more snappy though.
Windows is seldom a good idea to run a web server on, it would be better to run it on a linux system.
Docker is one option, and you can use Laravel Sail for that.
A virtual machine is another option.
@anchan42 php doesn't care about the OS, so you can run it on any machine you like, I however would not host it on Windows, it's too much overhead. It's much better to run it on a linux machine.
That being said, it doesn't really matter what OS you use while developing, but it is easier to find tutorials for Linux and OsX than it is for windows.