Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are good RPC frameworks between a Java server and C++ clients? [closed]

I am looking for a RPC stack that can be used between a Java Server and C++ clients.

My requirements are:

  1. Ease of integration (for both C++ and Java)
  2. Performance, especially number of concurrent connections and response time. Payload are mostly binaries (8-100kb)

I found some like:
http://code.google.com/p/protobuf-socket-rpc/
http://code.google.com/p/netty-protobuf-rpc/

Are there any other good alternatives?

like image 692
Enno Shioji Avatar asked Jan 22 '23 06:01

Enno Shioji


1 Answers

Thrift might be worth investigating.

like image 53
Mark Avatar answered Feb 08 '23 11:02

Mark