Best way for interprocess communication in C++

前端 未结 5 381
悲&欢浪女
悲&欢浪女 2020-11-30 02:09

I have two processes one will query other for data.There will be huge amount of queries in a limited time (10000 per second) and data (>100 mb) will be transferred per seco

5条回答
  •  野趣味
    野趣味 (楼主)
    2020-11-30 02:45

    I'll second Marc's suggestion -- I'd not bother with boost unless you have a portability concern or want to do cool stuff like map standard container types over shared memory (in which case I'd definitely use boost).

    Otherwise, message queues and shared memory are pretty simple to deal with.

提交回复
热议问题