vote up 2 vote down star

Serializing/deserializing with BinaryFormatter, resulting serialized file is ~80MB in size. The deserialization takes a few minutes. How could I improve on this? Here's the deserialization code:

    public static Universe DeserializeFromFile(string filepath)
    {
        Universe universe = null;

        FileStream fs = new FileStream(filepath, FileMode.Open);

        BinaryFormatter bf = new BinaryFormatter();
        try
        {
            universe = (Universe)bf.Deserialize(fs);
        }
        catch (SerializationException e)
        {
            Console.WriteLine("Failed to deserialize. Reason: " + e.Message);
            throw;
        }
        finally
        {
            fs.Close();
        }

        return universe;
    }

Maybe read all to memory prior to deserializing or use some other serialization technique?

flag

67% accept rate

5 Answers

vote up 0 vote down

How complex is the data? If it is an object tree (rather than a full graph), then you might get some interesting results from trying protobuf-net. It is generally pretty easy to fit onto existing classes, and is generally much smaller, faster, and less brittle (you can change the object model without trashing the data).

Disclosure: I'm the author, so might be biased - but it really isn't terrible... I'd happily lend some* time to help you try it, though.

*=within reason

link|flag
vote up 0 vote down

Implement ISerializable in the Universe class

link|flag
vote up 1 vote down

Try UnsafeDeserialize. It is said to improve speed.

link|flag
UnsafeDeserialize 460138 ms, Deserialize 459967 ms.. ie. Deserialize was actually faster! I set the headers with the UnsafeDeserialize to null, is this perhaps the reason? – Carlsberg Oct 25 at 14:00
vote up 0 vote down

Try reading the file into a memory stream first in one go, then deserialize using the memory stream.

link|flag
If that makes things better rather than worse, then the serialization format sucks. Why do an I/O bound task followed by a CPU-bound task when you could do both, interleaved? – hobbs Oct 25 at 12:05
vote up 0 vote down

Please take a look at this thread.

link|flag

Your Answer

Get an OpenID
or

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