rsnext/examples/ssr-caching
2021-02-07 12:20:00 -06:00
..
pages chore: remove-redundant-example-import (#13175) 2020-05-22 16:13:37 +00:00
.gitignore Added .gitignore to examples that are deployed to vercel (#15127) 2020-07-16 10:52:23 -04:00
package.json [examples] Fix for custom server SSR caching (#18786) 2021-02-07 12:20:00 -06:00
README.md Fix deploy buttons URLs (#20834) 2021-01-07 01:40:29 +00:00
server.js [examples] Fix for custom server SSR caching (#18786) 2021-02-07 12:20:00 -06:00

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).