Mongodb

Getting Started with MongoDB

In this post, we are going to go through some basic concepts of MongoDB and will Perform CRUD operations on console. What is MongoDB? MongoDB is an open-source database management system (DBMS). It is based on a document-oriented database. it is a NoSQL database, which means it doesn’t store data in tables and rows as in relational databases. It stores data in JSON-like documents which can be very…Read More

Elasticsearch

Getting Started with Elasticsearch: A basic overview

In this post, we will cover some basic concepts of elasticsearch, mapping and indexing the data, and searching on that data. What is Elasticsearch? Elastic search is an open source, distributed NoSQL database, full text search engine based on the lucene library. It is built on Java. It uses schema or table free JSON documents and provides REST APIs interface to interact with it. Elasticsearch is…Read More