For high performance Delphi / Free Pascal applications which need to communicate over IPC / the network I am interested in performance tests of serialization libraries for Delphi.
As this is not for cross-language operation, binary serialization is an option too, it is not limited to JSON or XML. I am also not limited to serialization of TPersistent or TRemotable descendants, or usage of classic vs extended RTTI.
I have not yet seen a benchmark which allows to run performance statistics for available libraries. Have you seen anything in this direction?
Background information / notes
Why benchmark?
A benchmark could help with decisions like 'is it worth the effort to switch from JSON to Binary?' for an existing application, by giving rough figures about the speed increase.
String serialization has advantages like easier debugging (for example with HTTP transport, where a simple proxy like Fiddler can be used).