kode12
Menu
  • Hibernate OGM
  • Hibernate ORM
  • Spring Boot
  • MongoDB
  • Interviews
  • ★
Hibernate, Spring Boot, MongoDB blog
Browse: Home » MongoDB

Store and Compare IP address in MongoDB – A study

November 22, 2016 · by Yogesh Prajapati · in MongoDB
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

Read More

Index In MongoDB

January 4, 2016 · by Vishal Ranapariya · 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

Read More

MongoDB: Basics with java

December 31, 2015 · by Yogesh Prajapati · in MongoDB
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

Read More

MongoDB: Querying with Shell

December 7, 2015 · by Vishal Ranapariya · in MongoDB
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.
1
2
3
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. Syntax:
1
>db.collectionName.find();
Returns: Returns all rows from collection. In

Read More

MongoDB: Basics with shell

MongoDB: Basics with shell

October 17, 2015 · by Yogesh Prajapati · in MongoDB
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

Read More

MongoDB: Basic Installation

MongoDB: Basic Installation

October 3, 2015 · by Vishal Ranapariya · in MongoDB
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

Read More

Recent Posts

  • JPA: How to apply Row Level Filter
  • Spring-Boot application.properties and yml property/file precedence: Interview Experience
  • Spring-Boot appication.properties file location interview question: Part 1
  • How Spring-Boot autocofiguration works?
  • Handling FallBack and TimeOut in MicroService using Hystrix

Promo

Tags

AOP Apache Solr AspectJ Eureka Hibernate Hibernate OGM Hystrix Ideas Interview IOT J2EE Java JPA MicroServices MongoDB MySQL Raspberry PI Spring Boot Spring Cloud SQL Swagger

Viewer’s Map

Archives

  • February 2019 (1)
  • July 2018 (3)
  • March 2017 (5)
  • February 2017 (2)
  • November 2016 (5)
  • August 2016 (2)
  • June 2016 (1)
  • March 2016 (3)
  • February 2016 (1)
  • January 2016 (1)

Copyright © 2019 kode12

Powered by WordPress and Origin