Re: RFR: 8273026: Slow LoginContext.login() on multi threading application [v7]

2021-11-02 Thread Weijun Wang
On Tue, 2 Nov 2021 20:39:47 GMT, Florent Guillaume wrote: >> Larry-N has updated the pull request incrementally with one additional >> commit since the last revision: >> >> Address review notes > > Could the original JDK-8230297 be closed as a duplicate please? @efge Closed. Thanks for remi

Re: RFR: 8273026: Slow LoginContext.login() on multi threading application [v7]

2021-11-02 Thread Florent Guillaume
On Thu, 28 Oct 2021 18:55:32 GMT, Larry-N wrote: >> This fix adds a cache of service provider classes to LoginContext (in >> particular, it's a cache of LoginModules classes). The approach helps to >> increase the performance of the LoginContext.login() method significantly, >> especially in a

Re: RFR: 8273026: Slow LoginContext.login() on multi threading application [v7]

2021-10-28 Thread Weijun Wang
On Thu, 28 Oct 2021 18:55:32 GMT, Larry-N wrote: >> This fix adds a cache of service provider classes to LoginContext (in >> particular, it's a cache of LoginModules classes). The approach helps to >> increase the performance of the LoginContext.login() method significantly, >> especially in a

Re: RFR: 8273026: Slow LoginContext.login() on multi threading application [v7]

2021-10-28 Thread Larry-N
> This fix adds a cache of service provider classes to LoginContext (in > particular, it's a cache of LoginModules classes). The approach helps to > increase the performance of the LoginContext.login() method significantly, > especially in a multi-threading environment. Service Loader is used fo