Hi,

i have a C++ application that at run time receives javascript which is as 
follows:
if (condition 1 && condition 2)
{ 
  if(condition)
  {
     true;  
  }
   
   false;
}

I compile this javascript in a worker thread and update the datastructure 
that holds the compiled javascript.

In my main thread, i try to run the v8 compiled script.

I have to use locker and isolate as i have two threads running which are 
using v8. First thread to compile the javascript and main thread to run the 
script.
My application is a low latency application. The execution speed should be 
very fast. Because i am using isolate, the speed of execution reduces.

Is there any other way in which i can do this using v8?
Can i have two instance of v8 in the same process?

Any help would be appreciated. Thanks!


-- 
-- 
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.


Reply via email to