vote up 1 vote down star
1

What are the deficiencies of the built-in BinaryFormatter based .Net serialization? (Performance, flexibility, restrictions)

Please accompany your answer with some code if possible.

Example:

Custom objects being serialized must be decorated with the [Serializable] attribute or implement the ISerializable interface.

Less obvious example:

Anonymous types can not be serialized.

flag

8 Answers

vote up 2 vote down check

If you mean BinaryFormatter:

  • being based on fields, is very version intolerant; change private implementation details and it breaks
  • isn't cross-compatible with other platforms
  • isn't very friendly towards new fields
  • is assembly specific (metadata is burnt in)
  • is MS/.NET specific (and possibly .NET version specific)
  • isn't obfuscation-safe
  • isn't especially fast or small
  • doesn't work on light frameworks (CF?/Silverlight)

I've spent lots of time in this area, including writing a (free) implementation of Google's "protocol buffers" serialization API for .NET; protobuf-net

This is:

  • smaller and faster
  • cross-compatible with other implementations
  • extensible
  • contract-based
  • obfuscation safe
  • assembly independent
  • is an open documented standard
  • works on all versions of .NET (caveat: not tested on Micro Framework)
  • has hooks to plug into ISerializable (for remoting etc) and WCF
link|flag
yerp I meant BinaryFormatter based serialization ... expanded the question to specify – Sam Saffron Mar 31 at 23:24
vote up 2 vote down

Given any random object, it's very difficult to prove whether it really is serializable.

link|flag
vote up 1 vote down

If you change the object you're serializing, all the old data you've serialized and stored is broken. If you stored in a database or even XML it is easier to convert old data to new.

link|flag
This is not strictly true the change has to be breaking... msdn.microsoft.com/en-us/library/… – Sam Saffron Mar 31 at 21:52
vote up 1 vote down

Versioning of data is handled through attributes. If you aren't worried about versioning then this is no problem. If you are, it is a huge problem.

The trouble with the attribute scheme is that it works pretty slick for many trivial cases (such as adding a new property) but breaks down pretty rapidly when you try to do something like replace two enum values with a different, new enum value (or any number of common scenarios that comes with long-lived persistent data).

I could go into lots of details describing the troubles. In the end, writing your own serializer is pretty darn easy if you need to...

link|flag
vote up 1 vote down

It isn't guaranteed you can serialize objects back and forth between different Frameworks (Say 1.0, 1.1, 3.5) or even different CLR Implementations (Mono), again, XML is better to this purpose.

link|flag
Or a different binary format; see my answer... – Marc Gravell Apr 1 at 6:09
vote up 1 vote down

Another issue that came to mind:

The XmlSerializer classes are located in a completely different place from the generic run time formatters. And while they are very similar to use, the XmlSerializer does not implement the IFormatter interface. You can't have code that allows you to simply swap the serialization formatter in or out at run time between BinaryFormatter, XmlSerializer, or a custom formatter without jumping through some extra hoops.

link|flag
XmlSerializer is meant for a totally different purpose than the runtime serializer and the formatters. You wouldn't want to swap. – John Saunders Mar 31 at 22:39
vote up 1 vote down

Types being serialized must be decorated with the [Serializable] attribute.

If you mean variables in a class, you are wrong. Public variables/properties are automaticly serialized

link|flag
I actually suspect he meant the class itself, but that's still wrong because you also have the option to implement ISerializable. Even if it's right, I don't think that's entirely a bad thing. – Joel Coehoorn Mar 31 at 21:34
Sorry I mean the class itself will expand that example – Sam Saffron Mar 31 at 21:40
It depends on the API; BinaryFormatter/SoapFormatter work against fields (public or private); XmlSerializer works against public members (fields or properties); DataContractSerializer works (ideally) against members marked [DataMember]. – Marc Gravell Mar 31 at 22:40
vote up 0 vote down

A slightly less obvious one is that performance is pretty poor for Object serialization.

Example

Time to serialize and deserialize 100,000 objects on my machine:

Time Elapsed 3 ms
Full Serialization Cycle: BinaryFormatter Int[100000]

Time Elapsed 1246 ms
Full Serialization Cycle: BinaryFormatter NumberObject[100000]

Time Elapsed 54 ms
Full Serialization Cycle: Manual NumberObject[100000]

In this simple example serializing an object with a single Int field takes 20x slower than doing it by hand. Granted, there is some type information in the serialized stream. But that hardly accounts for the 20X slowdown.

link|flag

Your Answer

Get an OpenID
or

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