hi, I have an array of Context that process JavaScript. And V8 works just fine with exception of one issue. To be able to re-use a Context for a new script I have to use the code below
bool Reset()
{
context.Dispose();
context = Context::New();
return true;
}
This takes far to much time. Is there any way to get around the
performance penalty of using Context::New() ?
--
v8-users mailing list
[email protected]
http://groups.google.com/group/v8-users
