We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
async function test() { const JSONPatcherProxy = (await import("jsonpatcherproxy")).JSONPatcherProxy let gS = { uno: { }, } let jsonPatcherProxy = new JSONPatcherProxy(gS) let objc = jsonPatcherProxy.observe(true); setInterval(() => { let generate = jsonPatcherProxy.generate() console.log("Generate", generate.length) },500) setInterval(() => { for (let i = 0; i < 1000; i++) objc.uno = { test: "test" } },1) } test()
This library has a huge memory leak. Just run the above program and see memory usage increase until node is killed.
The text was updated successfully, but these errors were encountered:
I remember there was a memory leak in the part using Map. It can be resolved by using WeakMap, like in this commit: argentumcode@43f7b2b
If the maintainer is okay with it, I can create a PR.
Sorry, something went wrong.
No branches or pull requests
This library has a huge memory leak. Just run the above program and see memory usage increase until node is killed.
The text was updated successfully, but these errors were encountered: