Nfs slow performance?

Why if I open a mounted NFS folder from phpstorm it can't load the project? If I use other editors, do they open this mounted folder very quickly? Maybe there is a special setting to open an already finished project from the nfs folder? My workstation on Ubuntu 23.04

0
2 comments

As i know phpStorm might need some additional configuration to handle NFS-mounted folders efficiently. Check the IDE settings related to file system access and network-mounted folders. You may find options to optimize file system performance or handle slow network connections. screen mirroring disney plus Check the file system permissions on the NFS-mounted folder and the files within it. PhpStorm may require read and write permissions to load and save files properly. Make sure that the permissions are set correctly to allow PhpStorm to access the files. 

Check if you have any directories excluded from indexing in PhpStorm settings. If the NFS-mounted folder or some of its subdirectories are excluded, it may affect the project loading process. Accessing files from an NFS-mounted folder might introduce some network latency, especially if the network connection is slow or unstable. This can lead to slow loading times in PhpStorm. Ensure that your network connection is stable and fast enough to access the NFS-mounted folder efficiently. 

-1

Hi there, we have suffered this issue on our students lab, the performance of our NFS server (for the HOMEs directory) was very very slow. We have do this and this is working fine: we have bypassed the .cache directory to a local storage: You can do this in the .sh start script of every jetbrain product, so you must delete the $HOME/.cache/JetBrains/ dir and create and new one, ie in /tmp or /var/tmp.

So after that you should ln this two directories: ln -s $HOME/.cache/Jetbrains/ to /var/tmp/ … 

This is working fine for us! Performance now its ok and our students and teachers are working fine again. Regards!

0

Please sign in to leave a comment.