FIFO files on PHP?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



I'm trying to build a queue out using FIFO files (someone on the MySQL
list suggested checking them out instead of using the database), but
I'm running into a problem because of the synchronous fwrite call.
Here's the code:

  $fifoFile = '/tmp/fifo';
  if (!file_exists($fifoFile)) {
    posix_mkfifo($fifoFile, 0600);
  }
  $fp = fopen($fifoFile, "w");
  fwrite($fp, "content");
  fclose($fp);

But this will block until something actually reads the pipe.  Is there
any way to write to the pipe, then go away as opposed to waiting until
something consumes it?  Otherwise, I may just go back to a database
table.

Thanks,
Waynn

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux