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
The text was updated successfully, but these errors were encountered:
mmomtchev
changed the title
Method PyObject.get is leaking function descriptorsPyObjects are leaking memory when used in a synchronous loop
Nov 3, 2022
Alas, this is a general Node.js problem which does not have a simple solution: nodejs/node-addon-api#1140
The problem is not that serious as it might appear because:
Server code is never synchronous
Client code usually does not run forever
Still, if doing very heavy computation that requires periodic cleanup of stale objects, the two profiling targets have been transformed to async code - which completely solves this problem
This code is leaking memory:
The text was updated successfully, but these errors were encountered: