reactjs / react-future

Specs & docs for potential future and experimental React APIs and JavaScript syntax.
2.82k stars 113 forks source link

Cached Data #47

Open evenstensberg opened 8 years ago

evenstensberg commented 8 years ago

Is it possible to make the react-dom diff from the cache instead as well as you code? Say you are making a server render call, and the data could be cached. Instead of rendering again, react-dom diffs your render all and sends it directly to the cache.

A personal, (and a bit insane twist) would be to delete the server-sided code once everything has been cached/called. But this doesn't scale very well..