Tagged Questions

32
votes
6answers
3k views

Technically why is processes in Erlang more efficient than OS threads?

Erlangs Characteristics From Erlang Programming (2009): Erlang concurrency is fast and scalable. Its processes are lightweight in that the Erlang virtual machine does not create an OS thread for ...
7
votes
3answers
623 views

How long does it take to create 1 million threads in Haskell?

What I understand, Haskell have green threads. But how light weight are they. Is it possible to create 1 million threads? Or How long would it take for 100 000 threads?
6
votes
6answers
2k views

Which scripting languages support multi-core programming?

I have written a little python application and here you can see how Task Manager looks during a typical run. While the application is perfectly multithreaded, unsurprisingly it uses only one CPU ...
4
votes
3answers
353 views

What's the difference between “green threads” and Erlang's processes?

After reading about Erlang's lighweight processes I was pretty much sure that they were "green threads". Until I read that there are differences between green threads and Erlang's processes. But I ...
2
votes
1answer
256 views

What exactly makes Erlang process, green thread, coroutine “lighter” than kernel thread? What about context switching that's heavy? [closed]

Possible Duplicate: Technically why is processes in Erlang more efficient than OS threads? Any time Elrang processes or green threads or coroutines are mentioned, they are always described ...
0
votes
2answers
210 views

Does LoadRunner use native or green vuser threads?

I set up 100 virtual users for a Windows version of LoadRunner, with the 'Run vuser as a thread' option enabled. I then used Process Explorer on wlrun.exe (the LoadRunner Controller process) to see ...
0
votes
4answers
302 views

Combining two Runnable objects

Say for example that I have a Runnable called RunnableA that does something. I also have a Runnable called RunnableB that does something else. Is there a way that I can combine these two Runnables ...