开始使用 Solr
: 这部分对你安装和使用 Solr 进行指导,你可以在这部分了解到 Solr 安装和使用的相关知识。
使用 Solr 管理员界面
:这部分用于介绍 Solr 基于 Web 的用户界面。从你的流浪器中你可以查看配置文件,提交查询,查看日志配置文件,Java 运行环境的配置,查看和控制分布式配置。
Documents Fields 和 Schema 设计
:这部分主要说明 Solr 的全文数据组织结构。同时说明了 Solr 的配置文件是如何在
全文数据
中进行配置字段的和配置字段的数据类型。
理解 Analyzers Tokenizers 和 Filters
:这部分用于说明 Solr 是如何在全文数据中进行查找的。分析器将输入的字符串进行拆分称为 Tokens 的字符流,我们可以认为拆分后的 Token 是为查询的字根。分词工具
Tokenizers 将获得字根流分解为查询需要的字根。过滤器(
Filters
)会进行一些过滤工作,或者对获得字根流进行筛选。
索引和基本数据操作
:本部分用于描述进行全文索引的过程和基本的一些全文索引操作,包括数据提交,优化,回滚等。
进行查找
: This section presents an overview of the search process in Solr. It describes the main components used in searches, including request handlers, query parsers, and response writers. It lists the query parameters that can be passed to Solr, and it describes features such as boosting and faceting, which can be used to fine-tune search results.
Apache Solr 参考指南
: This section discusses performance tuning for Solr. It begins with an overview of the
solrconfig.xml
file, then tells you how to configure cores with
solr.xml
, how to configure the Lucene index writer, and more.
Apache Solr 参考指南
: This section discusses important topics for running and monitoring Solr. It describes running Solr in the Apache Tomcat servlet runner and Web server. Other topics include how to back up a Solr instance, and how to run Solr with Java Management Extensions (JMX).
Apache Solr 参考指南
: This section describes the newest and most exciting of Solr's new features, SolrCloud, which provides comprehensive distributed capabilities.
Apache Solr 参考指南
: This section tells you how to grow a Solr distribution by dividing a large index into sections called shards, which are then distributed across multiple servers, or by replicating a single index across multiple services.
Apache Solr 参考指南
: This section tells you how to access Solr through various client APIs, including JavaScript, JSON, and Ruby.