I've been reading a lot of posts and articles extolling the speed of Parcelable over Serializable. I've been using both for a while to pass data between Activities through Intents, and have yet to notice any speed difference when switching between the two. The typical amount of data I have to transfer is 5 to 15 nested objects with 2 to 5 fields each.

Since I have about 30 classes which must be transferable, implementing Parcelable requires a lot of boilerplate code that adds maintenance time. One of my current requirements is also that the compiled code should be as small as possible; I expect that I could spare some space by using Serializable over Parcelable.

Should I use Parcelable or is there no reason to use it over Serializable for such small amounts of data? Or is there another reason why I shouldn't use Serializable?

link|improve this question

Have you tested the speed difference on a lower powered device? The speed difference is real.. – Mayra Aug 31 '10 at 18:25
feedback

1 Answer

up vote 9 down vote accepted

For in-memory use, Parcelable is far, far better than Serializable. I strongly recommend not using Serializable.

You can't use Parcelable for data that will be stored on disk (because it doesn't have good guarantees about data consistency when things change), however Serializable is slow enough that I would strongly urge not using it there either. You are better off writing the data yourself.

Also, one of the performance issues with Serializable is that it ends to spin through lots of temporary objects, causing lots of GC activity in your app. It's pretty heinous. :}

link|improve this answer
You are absolutely right. However you can always persist it by converting it into a JSON string. – johan Oct 18 '11 at 20:53
If you are saying to persist a parcel into a JSON string... no, no you can't. Re-encoding it as a JSON string doesn't change the fact that the data in it doesn't have guarantees about data consistency with things change or have a format that is guaranteed to be the same across platform versions. – hackbod Oct 19 '11 at 1:40
Not persist the parcel. But you can persist the object. – johan Oct 19 '11 at 6:43
Persist what object? – hackbod Oct 25 '11 at 18:30
The object that is parcelable – johan Oct 25 '11 at 20:33
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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