rsnext/examples/ssr-caching
2020-08-30 06:53:29 +00: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 Add cross-env to ensure examples work on Windows 10 (#16694) 2020-08-30 06:53:29 +00:00
README.md Simplify example usage instructions (#16678) 2020-08-29 22:22:02 -04:00
server.js removed renderToHTML from ssr-caching and custom-server-hapi in examples (#16138) 2020-08-13 04:43:46 +00: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).