-
Notifications
You must be signed in to change notification settings - Fork 136
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: concat performance #422
base: main
Are you sure you want to change the base?
Conversation
} | ||
return value; | ||
}; | ||
export function safeStringify(obj: unknown) { |
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.
We need a more comprehensive stringify to handle all possible inputs
type State = { computeBranches: boolean; vars: Record<string, any> }; | ||
|
||
const walkCache = new Map<string, EvaluatedValue>(); |
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.
We should probably use a LRU cache to avoid running out of memory. Right now, the number of entries is unbounded.
Is this PR also related with vercel/next.js#65512 ?
|
Related to https://linear.app/vercel/issue/NEXT-3402