Home Interview Questions and AnswersTechnical Interview Questions and AnswersApache Solr Apache Solr Interview Questions and Answers For Freshers Part-1

apache solr1.What is Apache Solr?
Apache Solr is a standalone full-text search platform to perform searches on multiple websites and index documents using XML and HTTP. Built on a Java Library called Lucence, Solr supports a rich schema specification for a wide range and offers flexibility in dealing with different document fields. It also consists of an extensive search plugin API for developing custom search behavior.

2.What file contains configuration for data directory?
Solrconfig.xml file contains configuration for data directory.

3.What file contains definition of the field types and fields of documents?
schema.xml file contains definition of the field types and fields of documents.

4.What are the features of Apache Solr?
• Allows Scalable, high performance indexing Near real-time indexing
• Standards-based open interfaces like XML, JSON and HTTP
• Flexible and adaptable faceting
• Advanced and Accurate full-text search
• Linearly scalable, auto index replication, auto failover and recovery
• Allows concurrent searching and updating
• Comprehensive HTML administration interfaces
• Provides cross-platform solutions that are index-compatible

5.What is Apache Lucene?
Supported by Apache Software Foundation, Apache Lucene is a free, open-source, high-performance text search engine library written in Java by Doug Cutting. Lucence facilitates full-featured searching, highlighting, indexing and spellchecking of documents in various formats like MS Office docs, HTML, PDF, text docs and others.

6.What is request handler?
When a user runs a search in Solr, the search query is processed by a request handler. SolrRequestHandler is a Solr Plugin, which illustrates the logic to be executed for any request.Solrconfig.xml file comprises several handlers (containing a number of instances of the same SolrRequestHandler class having different configurations).

7.What are the advantages and disadvantages of Standard Query Parser?
Also known as Lucence Parser, the Solr standard query parser enables users to specify precise queries through a robust syntax. However, the parser’s syntax is vulnerable to many syntax errors unlike other error-free query parsers like DisMax parser.

8.What is the use of field type?
Field type defines how Solr would interpret data in a field and how that field can be queried.

9.What all information is specified in field type?
A field type includes four types of information:
• Name of field type
• Field attributes
• An implementation class name
• If the field type is Text Field , a description of the field analysis for the field type.

10.Explain Faceting in Solr.
As the name suggests, Faceting is the arrangement and categorization of all search results based on their index terms. The process of faceting makes the searching task smoother as users can look for the exact results.

You may also like

Leave a Comment