MongoDB

Card Puncher Data Processing

About

MongoDB is an open-source NoSQL document database that uses a JSON-like schema instead of traditional table-based relational data.

A key goal of MongoDB is to bridge the gap between:

  • key/value stores (which are fast and highly scalable)
  • and traditional RDBMS systems (which are deep in functionality).

Test

https://github.com/fakemongo/fongo

Cloud

https://www.mongodb.com/cloud/atlas

Docker

docker run -itd --name mongo -p 27017:27017  bitnami/mongodb:latest

then login with the connection string

mongodb://localhost:27017





Discover More
Database Design Space
Database - (Software|Design Space|Category)

, Greenplum Massively parallel open source data warehouse Originally based on PostgreSQL (See also: ) Drill A single query can...
Data System Architecture
Database - Document Database

A document database is a database that can store and retrieve a document (generally a json document) at once. The data unit is generally not the record as in a relational database but the document. ...
Data System Architecture
Database - Model

relational model the Hierarchical_database_modelhierarchical model and network model. object-oriented databases. Object-Relation type-Object model is based on the assumption that any fact can...



Share this page:
Follow us:
Task Runner