Static rendering
Static rendering is generating a page's HTML at build time rather than per request.
Why it matters
It makes the sales funnel independent of the database, so an outage degrades a feature rather than stopping revenue.
How it is measured
Stop the database and request the landing and pricing pages. Both should still return 200 with full content.
Checks that involve static rendering
Related terms
Questions
What is static rendering?
Static rendering is generating a page's HTML at build time rather than per request.
Why does static rendering matter?
It makes the sales funnel independent of the database, so an outage degrades a feature rather than stopping revenue.
How is static rendering measured?
Stop the database and request the landing and pricing pages. Both should still return 200 with full content.