fastest (low latency) method for Inter Process Communication between Java and C/C++

后端 未结 10 891
隐瞒了意图╮
隐瞒了意图╮ 2020-11-29 14:45

I have a Java app, connecting through TCP socket to a \"server\" developed in C/C++.

both app & server are running on the same machine, a Solaris box (but we\'re

10条回答
  •  猫巷女王i
    2020-11-29 15:13

    If you ever consider using native access (since both your application and the "server" are on the same machine), consider JNA, it has less boilerplate code for you to deal with.

提交回复
热议问题