▲ | bob1029 4 days ago | ||||||||||||||||||||||||||||||||||||||||
SSR can feel worse than SPA if you don't get the end-to-end latency under a certain threshold. If your SSR pages are taking upward of 100ms to render on average, it's going to start to feel like shit once you factor in the network latency. My design goal for modern SSR pages is 500 microseconds render time on the server. A modern CPU can crank through several gigabytes of UTF8 text per second. There really isn't any excuse from a technology perspective. SSR pages being perceived as clunky & slow boils down to a skill / people / organizational problem. The computers and associated networks can definitely do it well. | |||||||||||||||||||||||||||||||||||||||||
▲ | nfw2 3 days ago | parent [-] | ||||||||||||||||||||||||||||||||||||||||
Every single action should have no perceivable latency between the action and the feedback that the action was received. You can implement that with SSR but it is clunky and also requires a lot of JS generally. | |||||||||||||||||||||||||||||||||||||||||
|