Replies: 1 comment 2 replies
-
Thanks for opening up the discussion ❤️ Regarding caching, one option would be using ssr meta-frameworks like Next.js and Nuxt to provide page-level caching options they all provide. However, we might also use HTTP framework + simple SSR component rendering. I guess no major difference in using which SSR framework and disabled cache can be best baseline. My main reason for initiating this idea was to make "HTTP framework benchmarks" more realistic (i.e., closer numbers as the complexity of an SSR scenario adds up to the more real-world scenario) To make it even more real, we might also consider having a local "API" server that during rendering components fetch them. This is often of the times the real performance bottleneck. |
Beta Was this translation helpful? Give feedback.
-
In reference to this comment, it might be possible to look into introducing SSR benchmarks for frameworks.
Some considerations I have off the top of my head:
renderToString
) or meta-framework implementations?Beta Was this translation helpful? Give feedback.
All reactions