On Thu, Mar 6, 2014 at 7:38 PM, Jane Chen <[email protected]> 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/groups/opt_out.
