Threaded server in python!?
Erik Max Francis
max at alcyone.com
Tue Jan 7 22:00:42 EST 2003
More information about the Python-list mailing list
Tue Jan 7 22:00:42 EST 2003
- Previous message (by thread): Threaded server in python!?
- Next message (by thread): Getopt: Using Environment Var To Override
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Giorgi Lekishvili wrote: > asynchroneous? 'Cause I am afraid I havn't understand how to make > synchronization > work with ThreadingTCPServer:((( For server work, asynchronous I/O is the alternative to multithreading or process forking (in the rare cases where forking will suffice). Asynchronous I/O really just means you use a select loop and handle each request as quickly as possible. There are all sorts of frameworks which make this easier, such as asyncore/Medusa, Twisted, etc. -- Erik Max Francis / max at alcyone.com / http://www.alcyone.com/max/ __ San Jose, CA, USA / 37 20 N 121 53 W / &tSftDotIotE / \ Nobody can reach me, nobody can touch me; it's a wonderful feeling. \__/ Aaliyah Maths reference / http://www.alcyone.com/max/reference/maths/ A mathematics reference.
- Previous message (by thread): Threaded server in python!?
- Next message (by thread): Getopt: Using Environment Var To Override
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list