python 管道持续读写_python-连续读取命名管道

在Python中连续读取命名管道的最佳方法是什么?

这是我当前的代码:

def read_commands():

try:

print "Creating read pipe..."

os.mkfifo(pipe_cmd) # Create pipe

print "Pipe created!"

except:

print "Pipe already exists"

with open(pipe_cmd, "r") as pipecmd:

while True:

try:

line = pipecmd.readline()

except:

print "Could not read cmd pipe"

if line != "":

print line

#time.sleep(1)

但是,当我运行此代码时,似乎从我的CPU中占用了很多资源(其中一个资源将达到100%). 1秒钟的睡眠可以正常工作.但是,我需要连续读取管道以确保是否有新数据.有没有更好的方法可以做到这一点?

这就是我要发送到C中的管道的内容:

void write_pipe(){

ofstream pipe("/tmp/okccmd"); // Open the pipe

string data = "Hi";

pipe << data << endl;

pipe.flush();

}

谢谢!

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值