Showing posts with label SOLR Search. Show all posts
Showing posts with label SOLR Search. Show all posts

Sunday, 30 December 2018

Indexing Process in Solr

The Following post defines how exactly the Indexing process in Solr works. When we take the Indexing part there are multiple ways we can achieve in Solr such as. Indexing...

Monday, 24 December 2018

Core Creation in Solr

Before Starting anything into the Solr We have to create the Core. A Core is a running instance or the process of a Lucene index that contains all the Solr...

Understanding Solr and Admin Console

We have seen how to download and install from our previous posts, Now its time to Understand it further. After unzipping into the Folder Observe the Folder Structure. Folder Structure...

Installing Solr

The Installation of Solr is very simple. On Comparing with other Search Platforms Which I worked, this is considered to be the simplest one in terms of installation. Download the...

Monday, 7 August 2017

Customizing “q” Parameter in SOLR

Hi All,          Today we are going to see how we are going to customize the Search parameter in solr. Almost all of our Projects will be...

Monday, 31 July 2017

Defining multiple entity In Solr

Most of us when implementing the Search for the Site , the data we are going to process is not from the Same Table and same fields , for information...

Faceting in Solr

Faceting can be defined as grouping up the grouping up the fields of search results, so that user can narrow down their search. Solr comes with simple implementation of it....

Standard Query Parser Parameters

QParameter Whatever we ask solr to search, it has to be denoted with the q Parameter. Once the Solr sees this parameter it will return the search results matching this parameter....

Common Query Parameters in Solr

Following tutorials deals with Solr's common query parameters, which are supported by the Search RequestHandlers After the Data Setup it’s our time to learn about the Querying part of Solr. Solr...