To Basic Step to NoSQL (with MongoDB)
This article is written to Introduce to a kind of new database type which means NoSql Databases. I hope this will help peoples who familier with SQL databases and not familier with NoSql databases. What is NoSQL Database. In simple, these kind of Databases are not use SQL (Structured Query Language) for database operations. In usual SQL databases, data is stored in table structure. To make db operations, we use SQL language Ex: SELECT * FROM Users; I'm not going to describe more about SQL Databases. You can refer this to learn about SQL So NoSQL Databases use JSON documents, Tree structures, Graphs like things. Here I will use Mongo DB. You can make database operations in Mongo DB using methods. Mongo DB Mongo DB is a one of commonly used NoSQL database in now a days. It was initially released in 2009. It was written C++. It runs in multiple platforms. And it is compleately free. MongoDB has items called collections which similer...