Performance comparison of Thrift, Protocol Buffers, JSON, EJB, other?

后端 未结 8 2119
一生所求
一生所求 2020-12-07 08:51

We\'re looking into transport/protocol solutions and were about to do various performance tests, so I thought I\'d check with the community if they\'ve already done this:

8条回答
  •  一生所求
    2020-12-07 09:16

    If the raw net performance is the target, then nothing beats IIOP (see RMI/IIOP). Smallest possible footprint -- only binary data, no markup at all. Serialization/deserialization is very fast too.

    Since it's IIOP (that is CORBA), almost all languages have bindings.

    But I presume the performance is not the only requirement, right?

提交回复
热议问题