Skip to main content

MongoDB Introduction


MongoDB is an Open Source database written in C++.


It can be used to store data for very high-performance applications (for example Foursquare is using it in production).


Advantages of MongoDB over RDBMS

  • Schema less − MongoDB is a document database in which one collection holds different documents. Number of fields, content and size of the document can differ from one document to another.

  • Structure of a single object is clear.

  • No complex joins.

  • Deep query-ability. MongoDB supports dyn

  • amic queries on documents using a document-based query language that's nearly as powerful as SQL.

  • Tuning.

  • Ease of scale-out − MongoDB is easy to scale.

  • Conversion/mapping of application objects to database objects not needed.

  • Uses internal memory for storing the (windowed) working set, enabling faster access of data.


Why Use MongoDB?

  • Document Oriented Storage − Data is stored in the form of JSON style documents.

  • Index on any attribute

  • Replication and high availability

  • Auto-sharding

  • Rich queries

  • Fast in-place updates

  • Professional support by MongoDB



Where to Use MongoDB?

  • Big Data

  • Content Management and Delivery

  • Mobile and Social Infrastructure

  • User Data Management

  • Data Hub






Comments

Popular posts from this blog

MongoDB: Data Types

MongoDB Data Types   : MongoDB stores documents on disk in the BSON serialization format. BSON is a binary representation of JSON documents, though BSON data format provides more data types than JSON.

MongoDB - Create Database

MongoDB - Create Database If you want to check your databases list, use the command show dbs Your created database (mydb) is not present in list. To display database, you need to insert at least one document into it. MongoDB use DATABASE_NAME is used to create a database. > use database_name

Linear Regression (Python Implementation)

  Linear regression is perhaps one of the most well known and well-understood algorithms in statistics and machine learning. In this post, you will discover the linear regression algorithm, how it works, and how you can best use it in on your machine learning projects. Contents… •Linear Regression •Simple Linear Regression •Multiple Linear Regression •Assumptions •Applications L inear Regression A statistical approach for modeling relationship between a dependent variable with a given set of independent variables. We refer dependent variables as response and independent variables as  features Simple Linear Regression Simple linear regression is an approach for predicting a response using a single feature. It is assumed that the two variables are linearly related. Hence, we try to find a linear function that predicts the response value(y) as accurately as possible as a function of the feature or independent variable(x). Let us consider a dataset where we have a value of respon...