twitter / Serial

Light-weight, fast framework for object serialization in Java, with Android support.
Apache License 2.0
1.01k stars 107 forks source link

Serial vs Parcelable #27

Open sourabhv opened 7 years ago

sourabhv commented 7 years ago

I didn't see Parcelable mentioned anywhere in your blog post. How is this different/better than Android's Parcelable?

DozenWang commented 7 years ago

I have the same question, why not use Parcelable to solve your serialized problem?

etibaldi commented 7 years ago

Parcel/Parcelable is not meant to be used for serialization on a persistent storage (check the Parcel javadoc). Try to update the structure of a Parcelable object, then parse the content of old ones.. it will not work, and it will be impossible to debug. They are designed for inter-process communication first. This library instead seems to handle it, if you check https://github.com/twitter/serial#updating-serializers I think they just simply chose a similar API to Parcelable, which makes sense because Android developers are used to it. What will be interesting is a comparison of this library with google protocol buffers.

DozenWang commented 7 years ago

Thank etibaldi, if u want to persist some binary data on storage. Serial is a better choice.

cesar1000 commented 7 years ago

Thanks for your answer, @etibaldi. Here are some aspects in which Serial differs from Parcelable:

@afauci goes into some detail in her post: https://blog.twitter.com/engineering/en_us/topics/open-source/2017/introducing-serial.html.

Ali, what do you think about adding this comparison at the bottom of the readme file?

afauci commented 7 years ago

Sure, let me add some comparisons in the documentation, I'll put up a diff for that this week.

On Thu, Nov 23, 2017 at 11:56 AM, César Puerta notifications@github.com wrote:

Thanks for your answer, @etibaldi https://github.com/etibaldi. Here are some aspects in which Serial differs from Parcelable:

  • As mentioned above, Serial is meant for persistent storage, while Parcelable is not, since its binary format is not guaranteed to be stable across versions of Android. Applications end up implementing both Parcelable and other serialization protocols in their model objects.
  • Serial has powerful support for debugging, which is critical for persistent storage. Serial detects issues in the input stream as soon as it comes across a field with the wrong type, and throws an exception describing the structure of the object, the mismatched field and the expected field type. In contract, the behavior of Parcelable with invalid input is undefined - it typically crashes the application, but it may just return invalid data.
  • Serial adds minimal metadata to the output stream to support backwards compatibility, either through version numbers in all objects or peek of the next field in the stream. Parcelable does not include any extra metadata or support for changes.
  • Parcelable requires implementing the Parcelable interface, which is only possible in objects you own. Also, it forces you to couple your model objects with specific serialization schemes, while serializers can be defined separately.
  • Last time I checked, Serial is faster than Parcelable in Lollipop and above, since Art precompiles dex files, while Parcelable requires frequent context switching through JNI into the native layer.

@afauci https://github.com/afauci goes into some detail in her post: https://blog.twitter.com/engineering/en_us/topics/open- source/2017/introducing-serial.html.

Ali, what do you think about adding this comparison at the bottom of the readme file?

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/twitter/Serial/issues/27#issuecomment-346690029, or mute the thread https://github.com/notifications/unsubscribe-auth/ACUcPIyUv_06ije7uFFB-O74VTkxWN7fks5s5c3ygaJpZM4Qm_EV .

-- Ali Fauci (202)251-3998