Serialization
From Just Solve the File Format Problem
(Difference between revisions)
(Added Simple Binary Encoding) |
(Added SBE Intermediate Representation) |
||
Line 35: | Line 35: | ||
* [[Protobuf]] (Protocol Buffers; a Google format also used within IWA) | * [[Protobuf]] (Protocol Buffers; a Google format also used within IWA) | ||
* [[Simple Binary Encoding]] | * [[Simple Binary Encoding]] | ||
+ | ** [[SBE Intermediate Representation]] | ||
* Thrift | * Thrift | ||
** [[Thrift binary protocol]] | ** [[Thrift binary protocol]] |
Revision as of 07:06, 3 June 2019
Serialization is used to transform data structures (as used within a program, in whatever native formats might be used by the programming language the program is in) into a file or data stream of standardized format to be saved for later use, or transmitted through a network to be used by a different program elsewhere.
Serialization formats
- Bencode (used by BitTorrent)
- BSON
- Cap'n Proto
- CBOR (RFC 7049) [1]
- CoffeeScript-Object-Notation (CSON)
- Cursive Script Object Notation
- DER (Distinguished Encoding Rules)
- FDF
- Form URL encoding (application/x-www-form-urlencoded)
- Hjson
- I-JSON
- Ion [2]
- IWA (Apple iWork serialization; .iwa)
- Java Object Serialization
- JSON (.json)
- JSON5 (.json5) [3]
- JSONH [4]
- JSONx
- LCON [5]
- MessagePack [6]
- Microsoft XNA Compiled Format (.xnb)
- Multipart/Form-Data
- OLE Property Set
- Pickle (Python)
- Property List (.plist)
- Protobuf (Protocol Buffers; a Google format also used within IWA)
- Simple Binary Encoding
- Thrift
- Transit [7]
- XFDF
- YAML (.yaml)