@@ -128,46 +128,46 @@ Welcome to MongoDB Docs
128
128
:class: hero-img
129
129
:alt: Homepage illustration
130
130
131
- What is MongoDB?
132
- ----------------
133
-
134
- MongoDB is a document-oriented, operational database
135
- built from the ground up as an alternative to the relational
136
- database for modern applications.
137
-
138
- Unlike relational databases, MongoDB allows developers
139
- to store rich JSON-like documents that map naturally to
140
- the objects they use in their code.
141
-
142
- For example, to model user objects in an application,
143
- a relational model would require multiple tables for
144
- what could be elegantly stored in MongoDB as this:
145
-
146
- .. code-block:: json
147
-
148
- {
149
- firstname: "Bob",
150
- lastname: "Smith",
151
-
152
- address: {
153
- street: "100 Main St",
154
- city: "Anytown",
155
- state: "MO",
156
- zip: "11111"
157
- }
131
+ What is MongoDB?
132
+ ----------------
133
+
134
+ MongoDB is a document-oriented, operational database
135
+ built from the ground up as an alternative to the relational
136
+ database for modern applications.
137
+
138
+ Unlike relational databases, MongoDB allows developers
139
+ to store rich JSON-like documents that map naturally to
140
+ the objects they use in their code.
141
+
142
+ For example, to model user objects in an application,
143
+ a relational model would require multiple tables for
144
+ what could be elegantly stored in MongoDB as this:
145
+
146
+ .. code-block:: json
147
+
148
+ {
149
+ firstname: "Bob",
150
+ lastname: "Smith",
151
+
152
+ address: {
153
+ street: "100 Main St",
154
+ city: "Anytown",
155
+ state: "MO",
156
+ zip: "11111"
158
157
}
159
-
160
- And retrieved with queries such as:
158
+ }
159
+
160
+ And retrieved with queries such as:
161
161
162
- .. code-block:: sh
162
+ .. code-block:: sh
163
163
164
- users.find({address.zip : "111111"})
164
+ users.find({address.zip : "111111"})
165
165
166
- MongoDB also offers:
167
- - Strong consistency with ACID transactions.
168
- - Modern additional built-in query capabilities such as geographical search, lexical search, and vector search.
169
- - Serverless horizontal scaling with geography-aware fault tolerance across all major cloud providers.
170
- - Security primitives that comply with the most demanding of enterprise environments.
166
+ MongoDB also offers:
167
+ - Strong consistency with ACID transactions.
168
+ - Modern additional built-in query capabilities such as geographical search, lexical search, and vector search.
169
+ - Serverless horizontal scaling with geography-aware fault tolerance across all major cloud providers.
170
+ - Security primitives that comply with the most demanding of enterprise environments.
171
171
172
172
.. kicker:: How this documentation is organized
173
173
0 commit comments