Getting familiar with Strict Contextual Escaping in Angular
The Problem:
While working on a recent project, I needed to show the highlighting that was part of the Solr response. The highlighting was done with html markup as part of the response.…
Read More
Exactish Phrase Matching in Solr
Phrase match: A simple way by which we can achieve exact matching in Solr is by using the default string type. It is exact phrase matching. the string is a useful…
Read More
Supervised Learning for Text Classification
Text Classification (or Categorization) has been investigated by many researchers over more than past 2…
Read More
Solr's mm parameter - Explanation of Min Number Should Match
This article explains the format used for specifying the “Min Number Should Match” criteria of the BooleanQuery objects built by the DisMaxRequestHandler. Using this it is possible to specify a…
Read More
Latent Semantic Indexing - An Introduction
Have you heard of Latent Semantic indexing (or analysis)? You would have come across the lingo if read about semantics and machine learning. I too had. But never went beyond reading…
Read More
Angular’s one-time data binding
This week while working with AngularJS, I came across a problem where a variable within $scope being reassigned to a new value every time a function was executed. I was…Read More
Microservices Architecture
Introduction
In this blog, will have walk through about Microservices Architecture pattern, which is now a days more populate than Monolithic application
Background
Today, there are several trends that are…
Read More
Solr Core Discovery
How does Solr discover a core?If you are a seasoned Solr developer and yet to migrate to latest releases, your answer might be ‘by registering the core by adding <cores> element…
Read More
Introduction to How Node. JS works
In this post, I will try to give an easy way to understand overview…
Read More
Find element / object in an array using jQuery. grep()
IntroductionIn this blog, will have walk through about easiest way to find the element/object in a JavaScript array which satisfy the filter condition.BackgroundMost of the time, we come to scenario…