Thanks, Ben! Separate question: how expensive is it to construct an Isolate assuming I don't do much with it? Once constructed, is it worth to keep around and re-use?
Thanks, Jane On Thursday, March 6, 2014 10:45:16 AM UTC-8, Ben Noordhuis wrote: > > On Thu, Mar 6, 2014 at 7:38 PM, Jane Chen <[email protected] <javascript:>> > wrote: > > I have some FunctionTemplates/ObjectTemplates that take time to create. > I > > expect to have many concurrent Isolates. I wonder whether there's any > way > > to reuse or share these expensive objects among Isolates. > > Short version: you can't. Maybe you want multiple Contexts instead of > Isolates? Though those cannot run in parallel like Isolates can, > assuming 'parallel' is what you mean by 'concurrent'. > -- -- 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.
