Hello folks,

I have a wcf service consumed by silverlight. To improve the performance of 
application, I have implemented using protobuf.net 
WCF contracts have been returning byte[] to be consumed by silverlight 
application.

I observe that after implementing protobuf.net, response size has been 
decreased by around 40%. However, it is taking more time to process the 
request, when compared to DataContractSerializer. 

Data returned by DataContractSerializer : 236 KB.
Data returned by Protobuf.Net: 194 KB

Looks like byte[] returned by protobuf serializer is  again getting 
serialized by DataContractSerializer and consuming more time.
Any suggestions please. Thanks in advance.


-- 
You received this message because you are subscribed to the Google Groups 
"Protocol Buffers" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/protobuf/-/CNhVP62BbM0J.
To post to this group, send email to protobuf@googlegroups.com.
To unsubscribe from this group, send email to 
protobuf+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/protobuf?hl=en.

Reply via email to