I have Blazor WebAssembly app for which initial loads are very time consuming anywhere between 2-5 min depending on connection speeds.
And when i try to run the test, say for two or thirty users, each having seperate login, it takes forever to run the test and many times test just times out.
My web App is using JWT authentication, so each user will have their own independent login.
Is it possible to cache the initial downloaded files and re-use those downloaded content for other user testing, excluding JWT Token ?
Other users would still require different username and password
I have Blazor WebAssembly app for which initial loads are very time consuming anywhere between 2-5 min depending on connection speeds.
And when i try to run the test, say for two or thirty users, each having seperate login, it takes forever to run the test and many times test just times out.
My web App is using JWT authentication, so each user will have their own independent login.
Is it possible to cache the initial downloaded files and re-use those downloaded content for other user testing, excluding JWT Token ?
Other users would still require different username and password