-
-
Notifications
You must be signed in to change notification settings - Fork 614
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
fix(weakCache): Replace recursion with while loop to avoid too much recursion #633
Conversation
This pull request is being automatically deployed with Vercel (learn more). 🔍 Inspect: https://vercel.com/pmndrs/jotai/FR2N4jSDXSLGQHL4b3yZ1c5EBHXs |
This pull request is automatically built and testable in CodeSandbox. To see build info of the built libraries, click here or the icon next to each commit SHA. Latest deployment of this branch, based on commit 073b470:
|
Great you found a solution! So, is this only the issue with the weakCache? If we didn't use getWeakCacheItem by commenting out, would the test pass? (well, I can try...) |
The issue seems to be too much recursion, JS doesn't handle that very well. Another solution would be a for loop, but I'm not sure how you would do that, given the current algorithm, where you push the item into the entry in |
Oh, I see. It's recursion. Yeah, I kind of knew this would happen. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yay! Thanks for finding the solution and fixing it!
Fixes #630