mbien commented on issue #4140:
URL: https://github.com/apache/netbeans/issues/4140#issuecomment-1134414691

   @notzed that would be the usecase, right? 3k seems to be still fairly 
useable while 10k causes a significant delay of several seconds, which confirms 
that something doesn't scale there. Worth noting is that the completion for 
`FieldsOfJoy10k.V*` is already slow without any star import.
   
   ```java
   package test;
   
   //import static test.FieldsOfJoy3k.*;
   import static test.FieldsOfJoy10k.*;
   
   public class LargeInterfaceCompletion {
   
       public static void main(String[] args) {
           System.out.println(VULKAN_);  // use completion here
           System.out.println(FieldsOfJoy10k.); // or here
       }
   
   }
   ```
   
[FieldsOfJoy3k.java.txt](https://github.com/apache/netbeans/files/8753216/FieldsOfJoy3k.java.txt)
   
   
[FieldsOfJoy10k.java.txt](https://github.com/apache/netbeans/files/8753218/FieldsOfJoy10k.java.txt)
   
   


-- 
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

Reply via email to