Geospatial Support in ElasticSearch 1. Introduction Elasticsearch is best known for its full-text search capabilities but it also features full geospatial support. We can find more about setting up Elasticsearch and getting started in this previous article. Let’s take a look on to how we can save geo-data in Elasticsearch… Continue Reading elasticsearch-geo-spatial

Elasticsearch Queries with Spring Data 1. Introduction In a previous article, we demonstrated how to configure and use Spring Data Elasticsearch for a project. In this article we will examine several query types offered by Elasticsearch and we’ll also talk about field analyzers and their impact on search results. 2.… Continue Reading spring-data-elasticsearch-queries

Quick Intro to Full-Text Search with ElasticSearch 1. Overview Full-text search queries and performs linguistic searches against documents. It includes single or multiple words or phrases and returns documents that match search condition. ElasticSearch is a search engine based on Apache Lucene, a free and open-source information retrieval software library.… Continue Reading elasticsearch-full-text-search-rest-api

Introduction to Spring Data Elasticsearch 1. Overview In this article we’ll explore the basics of Spring Data Elasticsearch in a code-focused, practical manner. We’ll show how to index, search, and query Elasticsearch in a Spring application using Spring Data – a Spring module for interaction with a popular open-source, Lucene-based… Continue Reading spring-data-elasticsearch-tutorial