Skip to content

Files

Latest commit

8eaabe2 · Jan 7, 2021

History

History
18 lines (12 loc) · 1015 Bytes

README.md

File metadata and controls

18 lines (12 loc) · 1015 Bytes

Example app where it caches SSR'ed pages in the memory

React Server Side rendering is very costly and takes a lot of server's CPU power for that. One of the best solutions for this problem is cache already rendered pages. That's what this example demonstrate.

This app uses Next's custom server and routing mode. It also uses express to handle routing and page serving.

How to use

Execute create-next-app with npm or Yarn to bootstrap the example:

npx create-next-app --example ssr-caching ssr-caching-app
# or
yarn create next-app --example ssr-caching ssr-caching-app

Deploy it to the cloud with Vercel (Documentation).