What are named pipes?

后端 未结 10 1010
无人共我
无人共我 2020-11-27 10:08

What are they and how do they work?

Context happens to be SQL Server

10条回答
  •  借酒劲吻你
    2020-11-27 11:08

    Compare

    echo "test" | wc
    

    to

    mkdnod apipe p
    wc apipe
    

    wc will block until

    echo "test" > apipe
    

    executes

提交回复
热议问题