Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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).

share|improve this question
Binary should by definition be faster than any string parsed method like json or xml. Also native handling should be faster than com based stuff like msxml. Question is though: does it matter... are you sending often, or ar you sending lots of data? – Remko Oct 28 '12 at 21:17
2  
What makes you think serialization is slower than transmission? – David Heffernan Oct 28 '12 at 23:08
1  
Not realy an answer but you may considere synopse/Mormot libraries because all the Synopse libraries are often 'performance in mind', blog.synopse.info/post/2012/05/03/…. – philnext Oct 29 '12 at 8:30
@DavidHeffernan: because serialization takes (a little) cpu time parsing data do text and from text back to data will also take time. Possibly the data packets will be become slightly bigger when serialized and get some overhead like header/footer and so on (it's not said that this will even really measurable though) – Remko Oct 29 '12 at 21:41
If you're sending large or very frequent payloads, you will improve performance of XML by compressing with gzip. This will add a little bit of CPU overhead, but the network savings (in our case) far outweigh it. You may want to look at that as the low-hanging fruit instead of over-thinking the serialization. – Chris Thornton Dec 12 '12 at 18:49

closed as not constructive by Ken White, Bill the Lizard Dec 13 '12 at 13:40

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.