On 5/7/13 3:39 PM, Ghassan Ayesh wrote:
Hi:

In Javascript language, and while the language is inherently functional, Javascript's *implementation* until now, does not support parallel code execution against available CPU cores, unlike Erlang for example or Clojure on JVM, so I am thinking that the actor pattern in Clojure when targetting JavaScript does not run in parallel natively. Am I right?

-Ghassan.

If what you are interested in is concurrency (not parallelism per say) then using JS generators would be an option for an actor library:

http://wingolog.org/archives/2013/05/08/generators-in-v8

--
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- You received this message because you are subscribed to the Google Groups "Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to