Best way for interprocess communication in C++

前端 未结 5 383
悲&欢浪女
悲&欢浪女 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 03:07

    I would use shared memory to store the data, and message queues to send the queries.

提交回复
热议问题