[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Gil/threading in python
- To: Bill Bruns <http://profiles.yahoo.com/billbruns>
- Subject: Re: Gil/threading in python
- From: Robert <http://dummy.us.eu.org/robert>
- Date: Wed, 26 Sep 2012 12:24:55 -0700
- Keywords: spamprobe
I'll look over the article. But, for the most part, you're screwed if
you're trying to do threading in Python, Perl, OCaml, Ruby, or a host of
other languages. Only Lua, Go, and, of course, C-derived languages,
support true multithreading.
> From: Bill Bruns <http://profiles.yahoo.com/billbruns>
> Date: Wed, 26 Sep 2012 10:16:30 -0700 (PDT)
>
> Hello Robert,
>
> Regarding the GIL/threading problem in python, are you aware of this article?
>
> http://www.doughellmann.com/articles/pythonmagazine/completely-different/2007-10-multi_processing/index.html
>
>
> It mentions other flavors of python that do not have this problem.
>
> I have mentioned the problem to a respected friend at Vimeo.
> His response:
> "I use gearmand to get around the problem mentioned in the article.. "
>
> I think he meant "gearman".
>
> Of course that still does not solve the threading problem,
> but I hope either the article or his response will be helpful.
>
> Bill