Re: concurrent access to object file

2005-05-26 Thread Mike Meyer
"Frank Abel" <[EMAIL PROTECTED]> writes: > Hi again! > > I will make the question more simple: > > If two call to the "write" method of a file object "occur simultaneously " > is totally sure that the data of each call is writen successive or exist the > posibility of merge data? Youv'e asked thi

concurrent access to object file

2005-05-26 Thread Frank Abel
Hi again! I will make the question more simple: If two call to the "write" method of a file object "occur simultaneously " is totally sure that the data of each call is writen successive or exist the posibility of merge data? where I can find information about this? Thank in advance Frank

concurrent access to object file

2005-05-23 Thread Frank Abel
Hi all! I will build a HTTPServer and dislike that one request is handled at a time (synchronous). So I write: class MyHTTPServer(SocketServer.ThreadingMixIn, BaseHTTPServer.HTTPServer): For log the request and error I create a file and atteched it to the server instance. Then t