Skip to content
Discussion options

You must be logged in to vote

In my experience, the cost difference between RSC/SSR vs CSR is usually overstated. For fully dynamic, authenticated pages, both models pay for:

  • a database query
  • some backend compute
  • serialization of the result

Whether the computation produces HTML/RSC payload on the server or JSON for the client to hydrate doesn’t materially change infra cost. The true bottleneck at scale is almost always database I/O, not React rendering.

We’ve benchmarked this internally: rendering React on the server added only a small % of overhead compared to the DB + business logic layer. Even high-traffic dashboards stayed well within normal CPU budgets. The only time SSR becomes noticeably expensive is if the p…

Replies: 2 comments 6 replies

Comment options

You must be logged in to vote
5 replies
@developer-choi
Comment options

@developer-choi
Comment options

@tyagi-anurag
Comment options

@developer-choi
Comment options

@tyagi-anurag
Comment options

Comment options

You must be logged in to vote
1 reply
@developer-choi
Comment options

Answer selected by developer-choi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
3 participants