> > If you can show me a format which offers faster serialisation or > deserialisation > than JSON in a .NET application, I'd be impressed! :)
In .NET? Sure: vs which json engine? I'm pretty certain that protobuf-net (especially v2, but probably v1) can thrash it. This is "v1", which is quite a bit slower than the unreleased "v2": http://www.servicestack.net/benchmarks/NorthwindDatabaseRowsSerialization.1000000-times.2010-02-06.html <http://www.servicestack.net/benchmarks/NorthwindDatabaseRowsSerialization.1000000-times.2010-02-06.html>so 8 times faster than NewtonSoft.Json and 10 times faster than Microsoft JsonDataContractSerializer. Smaller output too. A shame there aren't numbers there for JavaScriptSerializer, but the metrics aren't mine. Marc On 22 July 2010 15:50, Tim Acheson <[email protected]> wrote: > n show me a format which offers faster serialisation or > deserialisation than JSON in a .NET application, I'd be impressed! :) > Although I haven't heard anybody experiencing problems with the > performance of either direction in .NET with JSON or XML, the > libraries provided by the framework offer excellent performance in > both directions. : > -- Regards, Marc -- You received this message because you are subscribed to the Google Groups "Protocol Buffers" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/protobuf?hl=en.
