File: index.md

package info (click to toggle)
mongo-java-driver 3.6.3-2.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 16,112 kB
  • sloc: java: 102,506; xml: 395; javascript: 250; sh: 43; makefile: 4
file content (21 lines) | stat: -rw-r--r-- 1,088 bytes parent folder | download | duplicates (2)
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.