1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
+++
date = "2015-03-19T12:53:30-04:00"
title = "BSON"
[menu.main]
identifier = "BSON"
weight = 40
pre = "<i class='fa fa-th'></i>"
+++
## BSON
The BSON library comprehensively supports [BSON](http://www.bsonspec.org), the data storage and network transfer format that MongoDB uses for
“documents". BSON, short for Binary [JSON](http://json.org/), is a binary-encoded serialization of JSON-like documents.
- [Documents]({{< relref "documents.md" >}}): Documentation of the driver's support for BSON document representations
- [Readers and Writers]({{< relref "readers-and-writers.md" >}}): Documentation of the driver's support for stream-based reading and writing
of BSON documents
- [JSON]({{< relref "extended-json.md" >}}): Documentation of the driver's support for JSON
- [Codec and CodecRegistry]({{< relref "codecs.md" >}}): Documentation of the driver's `Codec` API, an abstraction for producing and
consuming BSON document representations using the stream-based readers and writers
- [POJOs]({{< relref "pojos.md" >}}): Documentation of the driver's POJO support.
|