After thinking a lot about what to write next, I stumbled upon a very cool idea. And this is what I thought I should do: Discover something interesting using code...
Let's say we have a text field "name" in an elasticsearch index with the following values: Siddhant, SIDTECHNOCRAT, and sid. Now follow the conventions mentioned in String Sorting in Elasticsearch, which talks about using...
We should not sort on analyzed text field instead we should sort on not_analyzed text field. Let's understand this with an example: Index some documents with a text field "name"....
I have created an Elasticsearch plugin for sentiment-analysis using Stanford CoreNLP libraries. The plugin is compatible with Elasticsearch 6.4.1. Follow the below steps to use this plugin with your elasticsearch...
Elasticsearch Analyzer is a wrapper which wraps three functions: Character filter: Mainly used to strip off some unused characters or change some characters. Tokenizer: Breaks a text into individual tokens(or words) based on...