Description
A brief description
As a Symfony developer, it's always been hard to get a stable/fast development environment. My current setup is a Ubuntu running under VirtualBox (using vagrant). While page generation is fast, my IDE accesses my PHP files through SMB, which is really (sometimes horribly) slow.
I'm now trying to use WSL to improve all of this. However, I'm having a major performance issue when using /mnt/*
folders.
If I set up a Symfony project under /mnt/c
, it is really slow. If I set it up under /home/mikael
, it is very fast.
Expected results
Drives mounted under /mnt should be as fast a any other folder.
Actual results
With a new Symfony 3.1.3 project, under /home/mikael
takes between 100ms and 130ms to generate the home page.
The same project under /mnt/c/
takes between 1200ms and 1500ms.
Your Windows build number
10.0.14393.51
Steps / commands required to reproduce the error
# Install PHP5
$ sudo apt-get install -y php5 php5-json
# Download Symfony installer
$ sudo curl -LsS https://symfony.com/installer -o /usr/local/bin/symfony
$ sudo chmod a+x /usr/local/bin/symfony
# Download Symfony
cd
symfony new symfony_test
# Start Symfony
cd symfony_test
php bin/console server:run
Open your browser and go to http://127.0.0.1:8000/.
Once the page is loaded, refresh it (on first request, Symfony had to generate its cache).
Generation time is displayed on the bottom left
You can then do the same under /mnt/c/
cd /mnt/c/
symfony new symfony_test
cd symfony_test
php bin/console server:run
Additional information
I've added my dev folders as excluded folders in Windows Defender, as well as %LOCALAPPDATA%\lxss.
I've tried having my project in ~
and pointing my IDE to %LOCALAPPDATA%\lxss\home\mikael\ but as I've later read, there is no supported way of editing WSL files.
WSL is installed in its default location under C (no strange junction or symlink), which is a healthy SSD.
My computer is attached to a domain, if this might have any influence.