Slashdot Mirror


User: bbarooga

bbarooga's activity in the archive.

Stories
0
Comments
1
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1

  1. Re:stackless.. on Multithreading - What's it Mean to Developers? · · Score: 1

    This processor would have precisely no effect on the scalability of Python since the Global Interpreter Lock ensures only one Python thread is run at any one time. See gil-of-doom Stackless appears to have no automatic context switching. Python typically needs multiple processes to utilise true parallel processing made available from multiple cores. Very heavyweight.