Web / Apache Solr Interview questions
What is a Solr core?
A core is a single running instance of a Lucene index along with its own configuration: schema.xml (or managed-schema) and solrconfig.xml. It is the basic unit of indexing and search in standalone (non-cloud) Solr.
A single Solr server process can host multiple cores side by side, each isolated with its own data directory, caches, and settings, which lets one server serve several independent indexes such as "products" and "logs".
Cores can be created, reloaded, swapped, or unloaded using the Core Admin API without restarting the whole Solr instance.
More Related questions...