Eventlet and locking

Posted by TheDude on Stack Overflow See other posts from Stack Overflow or by TheDude
Published on 2010-05-17T18:03:44Z Indexed on 2010/05/18 5:20 UTC
Read the original article Hit count: 365

Filed under:

Since Eventlet uses green threading and asynchronous I/O, do I still need to set locks before accessing objects? My understanding is that greenlets are all part of one thread and locking isn't necessary. Can anyone confirm or deny this?

© Stack Overflow or respective owner

Related posts about python