Re: [PHP] Exclusive File Access

2009-08-27 Thread Lupus Michaelis
Bastien Koert wrote: lock it with www.php.net/flock But you remain to be carefull, because flock is more like a semaphore : it doesn't really lock the file. See man page for flock. (Maybe under MS Windows the lock is hard). -- Mickaƫl Wolff aka Lupus Michaelis http://lupusmic.org -- PHP

Re: [PHP] Exclusive File Access

2009-08-26 Thread Bastien Koert
On Wed, Aug 26, 2009 at 12:35 PM, Warren Vailwar...@vailtech.net wrote: I have two processes running on the same server, one is creating a file, loading it with data, and this process runs real slow. The second process processes a directory, finds the new file and begins reading the file