Use named pipe some times very convenient, such as mkfifo file.fifo.

but the file.fifo is not persistent, if the computer restarted or the writer process crashed, I can get nothing from the pipe. so, are there any methods to let the piped data store in disk rather than memory?

thanks.

link|improve this question
The named pipes use the file-system only as a name space and for basic access control – this may be misleading. They are not real files, the data passing through the pipe is never stored in a file system. If you need something else, then the named pipes are not the tool you are looking for. – Jacek Konieczny Aug 19 '11 at 11:16
feedback

1 Answer

up vote 1 down vote accepted

The simplest solution is to use plain files to store the data. For example, and use a pipe (or similar) to notify that there are new data, for example. You must take care of interprocess locking, of course.

Or you can use "message queues" (see mqueue.h). They are persistent in case of process crash, but not if the system is rebooted.

Or you can use a third-party library that implements "persistent message queues". See this similar question.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.