I want using JMeter to benchmark server to server communication (Java Spring) with different data serialization format than JSON
Article Why not JSON? is suggesting MessagePack
MessagePack is an efficient binary serialization format. It lets you exchange data among multiple languages like JSON. But it's faster and smaller.
Can I use JMeter for benchmark sending JSON messages vs MessagePack and what can it compare? Can I check the time for getting request on receiver side or also time to prepare and send request on sender side? Or there are other considerations/known issues that prevent either?