From the course: NoSQL Essential Training

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

NoSQL document store type

NoSQL document store type - NoSQL Tutorial

From the course: NoSQL Essential Training

Start my 1-month free trial

NoSQL document store type

- [Instructor] Next, let's touch on NoSQL document databases. First, let's talk about what they are. Document databases are similar to key value databases, but the value in this case is stored as a document. For example, the popular document database MongoDB stores the document in a format called BSON. It stands for binary JSON, and as you might suspect, it's very similar to JSON. In fact as a developer, just think of it as JSON. The values within a document can be all sorts of types, from strings to objects, arrays, et cetera, akin to how developers type variables in their code. So it makes it very flexible and useful for agile development, and you should choose it when you need a ton of flexibility, but not a lot of complex queries. Document stores are considered general purpose in a way, Swiss Army knife types of no SQL databases, and they're useful for a wide variety of needs. They're often used for CMS systems, large…

Contents