Related to this thread: https://groups.google.com/forum/#!topic/v8-users/deYE9pzK9b8
I am having some difficulty with garbage collection in v8 5.3. As a result, I do the following after running a JavaScript request: 1) ContextDisposedNotification 2) IdleNotificationDeadline 3) If uncollected references still exist, LowMemoryNotification 4) If uncollected references still exist, reset them in my code, then dispose the isolate. Although this avoids a crash or memory corruption most of the time, I get a memory leak and eventually run out of memory. The way I dispose an isolate is just by calling Isolate::Dispose(). Am I missing anything? Conceptually, is the memory allocated and consumed in an isolate completely freed when the isolate is disposed? Even when garbage collection is incomplete in that isolate? Thanks in advance. -- -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users --- You received this message because you are subscribed to the Google Groups "v8-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
