-
Notifications
You must be signed in to change notification settings - Fork 46.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[React 19] Inconsistent "cache" api with Async Operations in react-server #29955
Comments
Note that the You should be using There are many subtle things that are environment dependent. For example this check is a legacy check that looks for AsyncLocalStorage on the global object because importing it doesn't work in some "edge" environments or requires a flag. So you'd need to set it up to expose it on the global but that's really something we're intending to change once all environments catch up to have it. But there are other things that lead to much worse performance when you use Edge in Node.js due to the streaming as well as the edge using setTimeout for scheduling. There's also debugging information that will only be available using the Node.js build. Therefore, using the "edge" build in Node.js is currently not really supported. |
Thanks @sebmarkbage, in which environment is the edge build meant to work? I figured out how to create a simple reproduction here, but my real issue arises when I use "react-server-dom-esm/server.node," which I have built from the source. Here is a CodeSandbox: https://codesandbox.io/p/github/nestarz/react-19-cache-issue/jsr So, here it's not because of the runtime but because of the "esm" build. I know it's not well-supported either, but can you point me to a fix so that AsyncLocalStorage works better? For disclosure, I'm trying to build a simple meta-framework for use in multiple runtimes, like Node and Deno. |
This issue has been automatically marked as stale. If this issue is still affecting you, please leave any comment (for example, "bump"), and we'll keep it open. We are sorry that we haven't been able to prioritize it yet. If you have any new additional information, please include it with your comment! |
I'm still affected by this issue, the AsyncStorage usage by the cache api is not supported even on the esm/node version and I provided a codesandbox with a minimal reproduction code to help. |
Description:
When running the provided code with
node
, I encounter an issue where the cache is inconsistent depending on whether an async operation is present.Steps to Reproduce:
node
:id
values logged inA
andB
are different.await new Promise(setImmediate);
line fromA
:node
again.id
values logged inA
andB
are now the same.Expected Behavior:
The
id
values should be consistent regardless of the presence of async operations during the render.Actual Behavior:
The
id
values are different when an async operation is present in the render method.Reproduction Code:
You can run the code using the following command:
or a codesandbox: https://codesandbox.io/p/github/nestarz/react-19-cache-issue/main?import=true
and the github repo: https://github.com/nestarz/react-19-cache-issue
Additional Information:
It seems there might be an issue with the request context propagation when async operations are involved during the render process. This leads to inconsistent behavior which could cause unpredictable bugs.
Environment:
node
v20.8.1It impacts the consistency and reliability of cache in async rendering scenarios, and it's critical when used as an alternative to server context, is this normal ? Thank you!
The text was updated successfully, but these errors were encountered: