On Monday, April 7, 2014 8:24:37 AM UTC+5:30, Onder Hazaroglu wrote:
> Hello,
> I've been using threading library to run some experiments parallel. There is
> no message passing between my threads but still it messes up somehow. The
> results are different than running it separated. Basically I experiment with
> three threads working on three different files but the results are different
> than running three of them sequentially. Is there a way to make sure that
> there is no memory sharing between threads?

Python -- like most languages -- does not provide the option:
thread-efficiency plus process-isolation.

Erlang makes this its centerpiece. So look at it if thats what you are
after.

-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to