You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Serialization on Android is slow and for persistence of Tweets, Zwitscher is serializing them by writing them to a ByteArrayOutputStream and persisting the result afterwards.
Parcels require more work, but are faster as they need no reflection unlike serialization.
The text was updated successfully, but these errors were encountered:
Actually that is not even true. Statuses are persisted as JSON string.
The serialization only happens when queueing.
It may make sense though to split a status into fields that are put into individual database columns and
to split out User objects and also RetweetedStatuses and (URL/Media)Entities
Serialization on Android is slow and for persistence of Tweets, Zwitscher is serializing them by writing them to a ByteArrayOutputStream and persisting the result afterwards.
Parcels require more work, but are faster as they need no reflection unlike serialization.
The text was updated successfully, but these errors were encountered: