lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On Tue, Jan 13, 2009 at 11:04 PM, Sam Roberts <vieuxtech@gmail.com> wrote:
> Also, until not so long ago, Erlang itself was
> incapable of using multiple CPUs, demonstrating that the basic model
> is still pretty powerful even when single threaded.

Since communication between Erlang process does not depend on the
location of the process, this was not a limitation. You just ran one
Erlang Node per processor. Granted, you needed to a little bit of work
to distribute the processes. But if you're looking to take advantage
of distribution (with an eye to scalability), you'd do that anyway.

Robby