Currently using SpiderMonkey. Our application, in the course of operation, can evaluate many Javascript scripts over the course of a single run, and we preserve enough of the SpiderMonkey state between script executions to preserve all changes/additions to the base javascript environment.
In the case of SpiderMonkey, this consists of a JSRuntime, a JSContext, and a JSGlobal. It looks as though for V8 what I need at minimum is an instance of v8::Isolate and the globalTemplate object. What am I missing? Is there a concise example of this sort of 'persistent v8 setup for multiple script invocations' out there? Right now I'm just cribbing from the shell sample application. -- -- 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.
