There are a number of binary protocols that provide "JSON equivalent" semantics:
PSON (non-standard pegasus codec)
BSON (mongoDB)
UBJSON
Smile
CBOR (not sure this is entirely JSON equivalent)
Flatbuffers
???
We should carefully review the performance of these (https://github.com/eishay/jvm-serializers/wiki is a good start) and determine which is the best and add codec support to Courier for that protocol.
Pegasus already includes support for PSON and BSON, so we really only need to review UBJSON, Smile, CBOR or any other contenders and determine if they are better than PSON or BSON, and if so, add codec support.
There are a number of binary protocols that provide "JSON equivalent" semantics:
We should carefully review the performance of these (https://github.com/eishay/jvm-serializers/wiki is a good start) and determine which is the best and add codec support to Courier for that protocol.
Pegasus already includes support for PSON and BSON, so we really only need to review UBJSON, Smile, CBOR or any other contenders and determine if they are better than PSON or BSON, and if so, add codec support.