mbien commented on PR #9303: URL: https://github.com/apache/netbeans/pull/9303#issuecomment-4173683940
for future reference: Splash init is now usually at about ~14ms (before was > 100). The remaining time is spent in usage of the utilities (`isFooEnabled()`) which have to init bundles or preferences. (measured warm startup after multiple runs since it has the most stable results when the system is warm) Something to try could be to trigger init of a set of resources (not only for Splash) using virtual threads early from the main method. LazyConstant might also be interesting in some cases - but only if it can be delayed away from the main thread to other threads. But there are larger fish to fry still before attempting something like that. -- 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
