Is Blazor WebAssembly use able at large volume data driven application?

Faruq Ahammad 0 Reputation points
2024-03-13T21:55:41.3566667+00:00

We have implemented a healthcare application using Blazor Web Assembly on .Net 8. Showing very poor performance at production. We have used JWT bearer token for session management.

When the load is high application abruptly logs out though the token is not expired and is very slow to load data.

Blazor
Blazor
A free and open-source web framework that enables developers to create web apps using C# and HTML being developed by Microsoft.
1,500 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Bruce (SqlWork.com) 61,731 Reputation points
    2024-03-13T22:46:07.9533333+00:00

    With blazor WASM, if you have performance issues with a large number of clients, it’s not the blazor app, but the webapi server it’s calling. Early token expiration sounds like a server recycle, but you should track down the issue.

    if you mean large payloads effect the blazor app, then you need some form of paging and better management of state.

    the browser networking stats should show if its server latency or the blazor app that reduces performance.

    0 comments No comments