in terms of both parsing (serializing, deserializing) and sending packets over the network is there any good estimation of performance differences between binary and xml serialization?
in terms of both parsing (serializing, deserializing) and sending packets over the network is
Share
Nope.
It depends highly on what sort of data is inside the XML document itself. If you have a lot of structured data, the overhead for XML will be large. For example, if your data looks like:
You’ll have a lot more overhead than if you have an XML document that looks like:
So it’s not really a fair question. It depends highly on the data YOU intend to send, and how/if you’re compressing it.