June 2016
Beginner
456 pages
9h 31m
English
In this recipe, we will look at basic CRUD operations with MongoDB. We will learn how to create databases, store, retrieve, and update stored data. This is a recipe to get started with MongoDB.
Make sure that you have installed and configured MongoDB. You can also use the MongoDB installation on a remote server.
Follow these steps to store and retrieve data with MongoDB:
$ mongo
server_ip and port with the respective values:
$ mongo server_ip:port/db
use dbname. Since schemas in MongoDB are dynamic, you do not need to create ...Read now
Unlock full access