I\'m using vagrant to run a wordpress dev environment on my local machine, have setup nfs as the default file-sharing mechanism (I\'m on a mac). Overall performance is reall
Found the answer here https://github.com/mitchellh/vagrant/issues/4204#issuecomment-49856008
Just add mount options to the nfs share in Vagrantfile, this will make nfs sharing sync almost instantly on every save (<500ms).
config.vm.synced_folder "www/", "/srv/www/", :type => "nfs", mount_options:['nolock,vers=3,udp,noatime,actimeo=1']