You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm looking for a way to use the defer feature in the loader function to return both raw data and a promise while also setting an ETag in the header for caching purposes. Currently, I don't see any way to achieve this. Could you help me with this?
This in an implementation approach, that did not work:
Either you need to add server-runtime explicitly, or its also re-exported somewhere in some of the react-router packages you already have in your dependencies.
Be careful sending just all headers to the remote. Might look convenient, but is also dangerous, because it would send potential secrets, like cookies, to a remote.
Doesn't even matter whether its trusted now and you intend to pass through cookies. The trust might change, new remote added or new cookies set for other purposes. They would be sent to those remotes regardless of consideration whether they should be sent or not, since this behavior is hidden in code and who will remember later?
Secrets might also be other headers, like Authorizationwith API tokens, etc.
Also consider using await Promise.all([...]) to reduce blocking in request processing, in case performance is an issue. You can typically do this whenever the requests are independent of each other's response.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I'm looking for a way to use the defer feature in the loader function to return both raw data and a promise while also setting an ETag in the header for caching purposes. Currently, I don't see any way to achieve this. Could you help me with this?
This in an implementation approach, that did not work:
Beta Was this translation helpful? Give feedback.
All reactions