MongoDB on AWS deployment

This Quick Start sets up a flexible, scalable AWS environment for MongoDB, and launches MongoDB into a configuration of your choice. MongoDB is an open source, NoSQL database that provides support for JSON-styled, document-oriented storage systems. Its flexible data model enables you to store data of any structure, and it provides full index support, sharding,Continue reading “MongoDB on AWS deployment”

How To Get Started with Python and MongoDB

You can get started with MongoDB and your favorite programming language by leveraging one of its drivers, many of which are maintained by MongoDB engineers, and others which are maintained by members of the community. MongoDB has a native Python driver, PyMongo, and a team of Driver engineers dedicated to making the driver fit to theContinue reading “How To Get Started with Python and MongoDB”

Introduction to MongoDB and Python

In this tutorial, you’ll learn how to integrate MongoDB with your Python applications. MongoDB is a leading open-source N0SQL database that is written in C++. This tutorial will give the reader a better understanding of MongoDB concepts needed in integrating MongoDB in your Python applications. The SQL vs. NoSQL Difference SQL databases use Structured QueryContinue reading “Introduction to MongoDB and Python”

Create a web API with ASP.NET Core and MongoDB

Configure MongoDB If using Windows, MongoDB is installed at C:\Program Files\MongoDB by default. Add C:\Program Files\MongoDB\Server\<version_number>\bin to the Path environment variable. This change enables MongoDB access from anywhere on your development machine. Use the mongo Shell in the following steps to create a database, make collections, and store documents. Choose a directory on your development machine for storing the data. ForContinue reading “Create a web API with ASP.NET Core and MongoDB”

mongoDB A Document-Oriented Database

The NoSQL database, MongoDB, avoids the traditional RDBMS table structure in favour of JSON-like documents with dynamic schemas. This makes the integration of data in certain types of applications easier and faster. MongoDB is most favoured for document stores MongoDB is a document-oriented database from the NoSQL family. Document databases are suitable for storing andContinue reading “mongoDB A Document-Oriented Database”

Why Learning MongoDB Will Boost Your Career

Here is an increasing demand for NoSQL database experts, especially those highly trained on Hadoop & MongoDB. This is mainly due to the fact that NoSQL databases are replacing traditional RDBMs as NoSQL databases like It offers the flexibility to organize data in a way that makes the data usable. This along with the proverbial explosion ofContinue reading “Why Learning MongoDB Will Boost Your Career”

MongoDB with Java with examples

Let’s start with a few key points about MongoDB itself: stores data in JSON-like documents that can have various structures uses dynamic schemas, which means that we can create records without predefining anything the structure of a record can be changed simply by adding new fields or deleting existing ones The above-mentioned data model gives usContinue reading “MongoDB with Java with examples”

MongoDB vs SQL Databases

It is a well known fact that SQL databases have ruled the world of data technologies and have been the primary source of data storage for over 4 decades. Generally the SQL databases are used, mainly for accessing relational databases. Oracle and Microsoft SQL Server ruled the segment, but as the Web development market paced up, there cameContinue reading “MongoDB vs SQL Databases”

MongoDB Create collection with Example

We know that the data in MongoDB is stored in form of documents. These documents are stored in Collection and Collection is stored in Database. Two ways to Create a Collection Here are two ways of creating collections: You can create a collection on the fly when inserting a document (using the insert() method. You can alsoContinue reading “MongoDB Create collection with Example”

How to create Data Base in MongoDB

In MongoDB, the first basic step is to have a database and collection in place. The database is used to store all of the collections, and the collection in turn is used to store all of the documents. The documents in turn will contain the relevant Field Name and Field values. For more info MongoDBContinue reading “How to create Data Base in MongoDB”

Design a site like this with WordPress.com
Get started