Store and Compare IP address in MongoDB – A study
Hi Guys, I would like to share an issue and possible solutions for the issue related to store and compare IP address in MongoDB. The Requirement Client have its own master IP Address list marked as GOOD and BAD ip address, in master list it may have plain IP address (i.e. 192.168.1.1) or in CIDR

Hibernate OGM basics with MongoDB
Hello Guys, We are back after long time. From this post we started new vertical which is combination of MongoDB and Hibernate. Yes, I am talking about Hibernate OGM. You will find other verticals on this blog for MongoDB, Hibernate ORM and Spring Boot, please go through it if you want to brush up your
Index In MongoDB
In the era of large data set we expect a fast and efficient data processing. When we talk about to query in database than think about a very basic algorithm of searching. We called it Sequential search. Basic Algorithm of sequential search is to search each and every row or document one by one, its
MongoDB: Basics with java
Now in this post we’ll see how to create database, collection, accessing documents from collection, and other CRUD operation and useful function using Java. Prerequisites For demo you need to add Java driver for MongoDB in your classpath. You can download a driver from official MongoDB site. For all demos in http://kode12.com we are using
MongoDB: Querying with Shell
In this post you can find tutorials on Basic querying Limiting results Sorting results Conditional expression Regular Expression Generating a dummy dataset for this post Use command in shell. for(var i=0;i<100000;i++){ db.employee.insert({"empId": "emp_" + i ,"employeeName": "employee_" + i}); }; Basic querying Function: find() find is used to perform query fetch data from collections in

MongoDB: Basics with shell
In post MongoDB: Basic Installation we learn how to install MongoDB, and test that it is working expected or not. Now in this post we’ll see how to create database collection accessing documents from collection other CRUD operations and useful function using Mongo shell. Connect to MongoDB Last step of previous post is to connecting

MongoDB: Basic Installation
Here we will see how to Install, Configure and Start MongoDB on Windows machine. We will discuss following steps to configure MongoDB server/client in this post. Download Configuration Test Run Download First of all download appropriate version from MongoDB official site, http://www.mongodb.org/downloads. Please select appropriate version of MongoDB distribution before downloading, generally it depends on