Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 PHP 中,有一个调用:posix_mkfifo(),它基本上是一个 fifo。有没有办法对此文件/fifo 设置限制?否则,如果没有人提取数据,它可能会无限增长。
提前感谢您的帮助。
mkfifo 创建的命名管道在文件系统上没有缓冲区。
这意味着:fifo的长度始终为零字节,并且不消耗任何存储空间(元数据除外)。因此,它不能无限增长,也没有必要限制它。
当一个进程试图向fifo写入字节时,它将被阻塞,直到另一个进程读取这些字节。