Difference between solr and lucene

后端 未结 7 792
面向向阳花
面向向阳花 2020-12-07 08:10

I know that Lucene and Solr are 2 differents Apache projects that are made to work together, but I don\'t understand what is the aim of each project.

For what I unde

7条回答
  •  有刺的猬
    2020-12-07 08:34

    Solr is built on top of lucene to provide a search platform.

    Search platform in the following layers from bottom to top:

    • Data
      • Purpose: Represent various data types and sources
    • Document building
      • Purpose: Build document information for indexing
    • Indexing and searching
      • Purpose: Build and query a document index
    • Logic enhancement
      • Purpose: Additional logic for processing search queries and results
    • Search platform service
      • Purpose: Add additional functionalities of search engine core to provide a service platform.
    • UI application
      • Purpose: End-user search interface or applications

    solr stack

    Reference article : Enterprise search

提交回复
热议问题