This document provides an introduction to Apache Solr, including:
- Solr is an open-source search engine and REST API built on Lucene for indexing and searching documents.
- Solr architecture includes nodes, cores, schemas, and concepts like SolrCloud which uses Zookeeper for coordination across collections and shards.
- Documents are indexed, queried, updated, and deleted via the REST API or client libraries. Queries support various types including range, date, boolean, and proximity queries.
- Installation and configuration of standalone Solr involves downloading, extracting, and running bin/solr scripts to start the server and create cores.
- Resources for learning more include tutorials, documentation, and integration options