r/dotnet • u/blabmight • Mar 07 '21
Scalability differences between Blazor server vs Web Assembly?
Are there any metrics comparing the differences in scalability between Blazor Server vs Web Assembly? I keep reading that Blazer server is less scalable then Web Assembly but I haven't seen any raw data comparing the two.
14 Upvotes
9
u/wasabiiii Mar 07 '21
Not sure you need metrics for this. Blazor server maintains a persistent session to the server, and the server holds all UI state.
We know what that does.