Hi,
I noticed that Filter, Interceptor and Authenticator are mono threaded. Is there any reason ? It can dramatically slow down all the requests.
Given the case of a wisdom web app that is used by a lot of people, if filter/interceptor/authenticator check that the user is well authenticated (often trigerring BDD layer), usually this checking can take 1 seconds to X seconds depending of multi parameters of the sub layer (persistent store, index layer etc...)
If N peoples are connected to the web app, the first person will get a fast answer in opposite of the N-th person that will have to way until all previous persons call have been consumed.
Can we used Async annotation on Filter/Authenticator/Interceptor?
Thank you in advance
Kévin