fetch()fetch() calls within the Route Handlers as the same fetch()fetch() calls are happening separately within SSR via createCaller()createCaller() and are being cached within Next's Data Cache as expected. However, I just read this from Route Handler docs: You can opt out of caching by: Using the Request object with the GET method.
fetchRequestHandler()fetchRequestHandler() takes in the RequestRequest as a param:fetchRequestHandler()fetchRequestHandler() automatically opt out of /app Route Handler caching? And if so, is there a way to enable caching? Thanks in advance 
Join the Discord to continue the conversation