SSR with cache ?
See original GitHub issueIs there any method from cache
to return cache data to client ?
Issue Analytics
- State:
- Created 4 years ago
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Deep dive into SSG, SSR and how a CDN and HTTP caching ...
Deep dive into SSG, SSR and how a CDN and HTTP caching can increase your performance by 10x. First, we dive into the...
Read more >Server Side Rendering Cache | Vue Storefront 2
Caching SSR output in Vue Storefront requires two packages: @vue-storefront/cache - Nuxt.js module, that does the heavy lifting.
Read more >Make your SSR site Lightning Fast with Redis Cache - Fjolt
Caching your SSR (Server Side Rendered) site with Redis can make it up to 95% faster. Let's look at how to do it...
Read more >Server-Side Rendering Performance: Overview
In this article, we'll show you how to build the fastest-possible SSR PWA by making sure that most pages are cached through the...
Read more >Caching - Vue SSR Guide
Page-level Caching. A server-rendered app in most cases relies on external data, so the content is dynamic by nature and cannot be cached...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
There is method for that:
And it’s working on server side for our simple cache provider.
Example app for next.js framework (responses are cached for 10s on server side):
next.config.js
:client.js
pages/_app.js
pages/index.js
That would be pretty easy if https://github.com/marcin-piela/react-fetching-library/issues/13 happens. Then you can pull the state directly from the redux store. You won’t have to use redux in the browser as you could have a split point based on if it was running server-side.