The iOS docs differentiate between "serializing" and "archiving." Is this a general distinction (i.e., holds in other languages) or is it specific to Objective-C? Also, what is the difference between these two?
feedback
|
|
This is a case of one being the other some (but not all) of the time. Wikipedia has this to say about serialization: "Serialization is the process of converting a data structure or object into a sequence of bits so that it can be stored in a file or memory buffer, or transmitted across a network connection link to be "resurrected" later in the same or another computer environment" So, archiving may only be serialization, but it could also be the combination of serialization and compresssion, for example. Or perhaps it adds some kind of header info. So serialization is a form of archive, but an archive is not necessarily a serialization. This isn't really specific to iOS - these terms are thrown around all over. Their specific meaning in the context of iOS could be quite specific, though. | |||
|
feedback
|
|
I was actually trying to look for their difference from IOS perspective. Adding the following for people interested : Purpose: Serialization is used for storing arbitrary hierarchy of objects. Differences(excerpts from Archives programing guide): "The serialization only preserves the values of the objects and their position in the hierarchy. Multiple references to the same value object might result in multiple objects when deserialized. The mutability of the objects is not maintained." Implementation differences: When to Use: | |||
|
feedback
|
|
Generally speaking, Serialization is concerned with converting your program data types into architecture independent byte streams. Archiving is specialized serialization in that you could store type and other relationship based information that allow you to unserialize/unmarshall easily. So archival can be thought of as a specialization and subset of Serialization. For Objective-C
With C++ boost serialization -- http://www.boost.org/doc/libs/1_45_0/libs/serialization/doc/index.html
| |||
feedback
|