czukowski commented on issue #3933: URL: https://github.com/apache/netbeans/issues/3933#issuecomment-1812288621
I suspect it has to do primarily with the project size, the system performance and possibly OS (they say, NTFS on Windows is very slow). In my experience,〈ctrl + mouse click〉,〈Go to Declaration〉and 〈Ctrl+B〉are often unstable. I suspect PHP parser may be involved, because if I make a change, even in a file that is not large, almost always navigating becomes unstable, but after a while it's working again. Also a lot of consequent navigation (clicking back and forth, like OP described) causes similar problems. I've come up with a quick way to initialize a large PHP project for testing. Essentially, first clone Magento (the largest open source project I'm aware of), initialize its Composer dependencies and then beef it up even more by adding additional dependencies known to be large: ```sh git clone https://github.com/magento/magento2.git . composer install composer require aws/aws-php-sns-message-validator:* facebook/graph-sdk:* facebook/php-business-sdk:* google/apiclient:* nikic/php-parser:* phing/phing:* php-coord/php-coord:* phpoffice/phpspreadsheet:* ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
