On Thu, Sep 10, 2009 at 8:51 PM, krovosos <[email protected]> wrote:
>
> we are currently using V8 in a kind of server-side scripting engine.
> Javascript is used for implementing business-level logic. V8 is nice,
> really! It is fast and well structured. But... Suppose we want to run
> a 1000+ small scripts simultaneosly. How can we achieve this? Run
> 1000+ processes like Chrome do? Well, not a smart idea. So we have a
> single process with 1000+ V8 contexts and there can be only one script
> running in V8 at the moment. If it is somehow slow we are stuck,
> others are waiting.

You can checkout node (http://tinyclouds.org/node) which can do
concurrent I/O on V8.

--~--~---------~--~----~------------~-------~--~----~
v8-users mailing list
[email protected]
http://groups.google.com/group/v8-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to