MongoDB
Easier to scale NoSql DBs in general are easier to scale than SQL or relational databases Faster NoSql DBs are also faster in more types of operations. Starting MongoDB after installing it from the MongoDB website using the MSI Run it as an administrator C:\Program Files\MongoDB\Server\3.6\bin>mongod --directoryperdb --dbpath "C:\Program Files\MongoDB\Server\3.6\data\db" --logpath "C:\Program Files\MongoDB\Server\3.6\log\mongo.log" --logappend --install C:\Program Files\MongoDB\Server\3.6\bin>net start MongoDB The MongoDB service is starting...... How to open a mongo shell? By typing mongo from the bin directory C:\Program Files\MongoDB\Server\3.6\bin>mongo MongoDB shell version v3.6.2 connecting to: mongodb://127.0.0.1:27017 MongoDB server version: 3.6.2 Welcome to the MongoDB shell. Get list of DBs > show dbs admin 0.000GB local 0.000GB Creating own DB > use mycustomers switched to db mycustomers Check current data...