ISR server Functions (Understanding its Usage - need Help)
hello, I try to understand this feature from ts start.
Does using ISR with server functions means only the data fetched by the function can be cached globally and not the entire page?
and if true, then practically this would be a cheat hack that will drastically reduce the use of the loading state on client side navigation. (ofc the suspense loading state still it's needed as safety net I suppose) but overall it wont be trigged much .
https://tanstack.com/start/latest/docs/framework/react/guide/isr#isr-with-server-functions
Am I correct or wrong? please correct me if wrong. thank you!
Does using ISR with server functions means only the data fetched by the function can be cached globally and not the entire page?
and if true, then practically this would be a cheat hack that will drastically reduce the use of the loading state on client side navigation. (ofc the suspense loading state still it's needed as safety net I suppose) but overall it wont be trigged much .
https://tanstack.com/start/latest/docs/framework/react/guide/isr#isr-with-server-functions
Am I correct or wrong? please correct me if wrong. thank you!

Incremental Static Regeneration (ISR) allows you to serve statically generated content from a CDN while periodically regenerating it in the background. This gives you the performance benefits of stati...