Hacker News new | past | comments | ask | show | jobs | submit login

How does the GIL help you write concurrent code?



It means you never have to worry about message passing or locks, because they aren't a thing at all. On the other hand, what looks like concurrent code often isn't, and is actually run slower than single process code, also because of the GIL.


That reduces to "you don't have to worry about performance because the GIL doesn't let you write performant code". That's not what I think of as "helpful".




Consider applying for YC's Spring batch! Applications are open till Feb 11.

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: