Giter Site home page Giter Site logo

mongodb's Introduction

MongoDB

MongoDB is an open-source document database and leading NOSQL database. MongoDB is written in C++. This tutorial will give you great understanding on MONGODB concepts needed to create and deploy a highly scalable and performance-oriented database.

NOSQL DB

Data Store in JSON format like (BSON). Horizontal Scalable Key Value Pair :

{
    name : "prakash",
    age : 20,
    degree : "BCA"
}

Mongo, MongoD, Mongo Compass, Mongo Atlas..

Mongo

It is the Command-line shell that connects to a specific instance of MongoD.

MongoD

It is the Mongo Daemon, basically the host process for the database, run it in the background.

Mongo Compass

It is a powerful GUI for querying, aggregating and analyzing your MongoDB data in a visual enviroment.

Mongo Atlas

It is a fully-managed cloud database that handles all the complexity of deploying, managing and healing your deployments on the cloud server provider of your choice (AWS, AZURE).

JSON (JAVASCRIPT OBJECT NOTATION)

It's a light weight format for storing and transporting data, JSON is often used when data is sent from a server to web page.

It is a common mistake to call a JSON object literal "a JSON object".

JSON cannot be an object. JSON is a string format.

The data is only JSON when it is in a string format. When it is converted to a JavaScript variable, it becomes a JavaScript object.

{
   "Course": [
      {
         "id":"033",
         "language": "JavaScript"
      },	
      {
         "id":"034",
         "language": "MongoDB"
      }
   ]
}

MongoDB Advantage

  • schema less
  • Full cloud-based application data platform
  • No complex Joins
  • More Faster

mongodb's People

Contributors

prakashrawat999 avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.