I am shopping for a BinaryFormatter alternative/replacement.

The current issues I have with BinaryFormatter (and the alternatives should address this) are
1) backwards compatibility (can deserialize Classes serialized using an earlier version)
2) size
3) speed

I have checked out AltSerializer which looks ok, some conflicting reports on speed however it looks like it supports backwards compatibility.

I also looked at protobuf-net which looks fantastic except at this stage it would require alot of work as you have to define all the .proto files.

Perhaps someone using either of the above or something else would care to comment.

link|improve this question

why does kbrimington come up as 'edited' ? – wal Aug 18 '10 at 14:10
answer) you added a tag i see. thx – wal Aug 18 '10 at 14:18
feedback

2 Answers

up vote 1 down vote accepted

I have since learned that protobuf-net will respect the [DataContract] and [DataMember] attributes (no .protos required) so if your classes are WCF-ready or you want to decorate them with aforementioned attributes then you can use protobuf-net out of the box for your classes.

Some work is obviously required to decorate all your classes (v1 of protobuf requires this) however I understand v2 will be able to able to build the model for your undecorated classes.

link|improve this answer
feedback

There's also Proto# and dotnet-protobufs.

link|improve this answer
They also require a fair bit of initial overhead to get going (.proto definitions). – wal Aug 18 '10 at 14:05
In the sample given for Proto# I don't see any .proto definitions. – Darin Dimitrov Aug 18 '10 at 14:11
ah sorry, I did look at Proto yesterday, its in alpha and not production ready. – wal Aug 18 '10 at 14:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.