[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Why nobody talks about Lua
- From: Tony Finch <dot@...>
- Date: Mon, 15 Feb 2010 13:23:32 +0000
On Sun, 14 Feb 2010, Gé Weijers wrote:
>
> Last time I looked at Python the interpreter used a single lock to make sure
> that no two threads could be running inside the interpreter at the same time.
> Python supports threads by serializing them. That helps with using blocking
> system calls but not with performance.
It's worse than that. Python's GIL is implemented so badly that you often
get worse performance by adding processors. http://blip.tv/file/2232410
Tony.
--
f.anthony.n.finch <dot@dotat.at> http://dotat.at/
GERMAN BIGHT HUMBER: SOUTHWEST 5 TO 7. MODERATE OR ROUGH. SQUALLY SHOWERS.
MODERATE OR GOOD.
- References:
- Why nobody talks about Lua, Alex Combas
- Re: Why nobody talks about Lua, Alex Combas
- Re: Why nobody talks about Lua, dcharno
- Re: Why nobody talks about Lua, Alexander Gladysh
- Re: Why nobody talks about Lua, Alex Combas
- Re: Why nobody talks about Lua, Alexander Gladysh
- Re: Why nobody talks about Lua, steve donovan
- Re: Why nobody talks about Lua, Alexander Gladysh
- Re: Why nobody talks about Lua, Eike Decker
- Re: Why nobody talks about Lua, steve donovan
- Re: Why nobody talks about Lua, Alexander Gladysh
- Re: Why nobody talks about Lua, Gé Weijers