本文英文版地址:https://examples.javacodegeeks.com/enterprise-java/apache-solr/solr-multivalued-example/
在这个Solr多值示例的示例中,我们将讨论如何索引包含多个值的字段,并演示如何检索它们。Solr存储单个值字段和多个值字段的索引值的方式没有区别。 但是,虽然从存储中检索多值字段,我们将获得结果作为列表,需要解析以显示多个值。
为了演示多值特性,我们将使用Solr服务器附带的示例文件“books.json”。
这个例子的首选环境是solr-5.0.0。在开始Solr安装之前,请确保已安装JDK并已正确设置Java_Home。
首先,让我们从以下位置下载最新版本的Apache Solr:
http://lucene.apache.org/solr/downloads.html
Apache Solr已经经历了从4.xx到5.0.0的各种更改,因此如果您有不同版本的Solr,则需要下载5.xx版本以遵循此示例。
下载Solr zip文件后,将其解压缩到文件夹中。 提取的文件夹将如下所示:
bin
文件夹包含用于启动和停止服务器的脚本。 example
文件夹包含几个示例文件。 我们将使用其中一个来演示Solr如何对数据进行索引。server
文件夹包含用于写入所有Solr日志的logs
文件夹。在索引期间检查日志中的任何错误将有所帮助。 服务器下的solr
文件夹包含不同的集合或核心。 每个核/集合的配置和数据存储在相应的核/集合文件夹中。
Apache Solr附带了一个内置的Jetty服务器。 但在我们启动solr实例之前,我们必须验证JAVA_HOME是否在机器上设置。
我们可以使用命令行脚本启动服务器。 让我们从命令提示符转到bin目录并发出以下命令:
solr start
这将在默认端口8983下启动Solr服务器。
我们现在可以在浏览器中打开以下URL,并验证我们的Solr实例正在运行。 solr管理工具的具体细节超出了示例的范围。
http://localhost:8983/solr/
当Solr服务器在独立模式下启动时,配置称为核心,当在SolrCloud模式下启动时,配置称为集合。在这个例子中,我们将讨论独立的服务器和核心。 我们将暂停SolrCloud讨论以供日后使用。
首先,我们需要创建一个用于索引数据的Core。 Solr create命令有以下选项:
在本例中,我们将使用-c参数作为核心名称,使用-d参数作为配置目录。 对于所有其他参数,我们使用默认设置。
现在在命令窗口中导航solr-5.0.0\bin
文件夹,并发出以下命令:
solr create -c jcg -d basic_configs
我们可以在命令窗口中看到以下输出。
1 |
|
2 |
|
3 |
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
现在我们导航到以下URL,我们可以看到jcg core被填充在核心选择器中。 您还可以查看核心的统计信息。
http://localhost:8983/solr
多值字段允许我们在同一个字段中存储多个值。 包含同一字段或copyField的用法的多个值的源数据将强制我们使用multiValued字段。 类似于单值字段配置,我们必须修改schema.xml
文件以添加多值属性。 让我们导航到server\solr\jcg\conf
文件夹,并执行以下配置。 在这里,我们已经使猫场多重价值。
schema.xml
1 |
< span class = "notranslate" onmouseover = "_tipon(this)" onmouseout = "_tipoff()" >< span class = "google-src-text" style = "direction: ltr; text-align: left" >< uniqueKey >id uniqueKey > span > < uniqueKey > id uniqueKey > span > |
2 |
< span class = "notranslate" onmouseover = "_tipon(this)" onmouseout = "_tipoff()" >< span class = "google-src-text" style = "direction: ltr; text-align: left" >
span > <! - 为多值示例添加 - > span > |
3 |
< span class = "notranslate" onmouseover = "_tipon(this)" onmouseout = "_tipoff()" >< span class = "google-src-text" style = "direction: ltr; text-align: left" >< field name = "name" type = "text_general" indexed = "true" stored = "true" /> span > < field name =“name”type =“text_general”indexed =“true”stored =“true”/> span > |
4 |
< span class = "notranslate" onmouseover = "_tipon(this)" onmouseout = "_tipoff()" >< span class = "google-src-text" style = "direction: ltr; text-align: left" >< field name = "cat" type = "text_general" indexed = "true" stored = "true" multiValued = "true" /> span > < field name =“cat”type =“text_general”indexed =“true”stored =“true”multiValued =“true”/> span > |
5 |
< span class = "notranslate" onmouseover = "_tipon(this)" onmouseout = "_tipoff()" >< span class = "google-src-text" style = "direction: ltr; text-align: left" >< field name = "price" type = "tdouble" indexed = "true" stored = "true" /> span > < field name =“price”type =“tdouble”indexed =“true”stored =“true”/> span > |
6 |
< span class = "notranslate" onmouseover = "_tipon(this)" onmouseout = "_tipoff()" >< span class = "google-src-text" style = "direction: ltr; text-align: left" >< field name = "inStock" type = "boolean" indexed = "true" stored = "true" /> span > < field name =“inStock”type =“boolean”indexed =“true”stored =“true”/> span > |
7 |
< span class = "notranslate" onmouseover = "_tipon(this)" onmouseout = "_tipoff()" >< span class = "google-src-text" style = "direction: ltr; text-align: left" >< field name = "author" type = "text_general" indexed = "true" stored = "true" /> span > < field name =“author”type =“text_general”indexed =“true”stored =“true”/> span > |
由于我们已经修改了配置,我们必须停止和启动服务器。 为此,我们需要通过命令行从bin目录发出以下命令:
solr stop -all
服务器将立即停止。 现在启动服务器通过命令行从bin目录发出以下命令:
solr start
Apache Solr附带一个名为SimplePostTool的独立Java程序。 该程序打包到JAR中,安装在example\exampledocs
文件夹下。
现在,我们导航到命令提示符中的example\exampledocs
文件夹,并键入以下命令。您将看到一堆使用该工具的选项。
java -jar post.jar -h
使用格式一般如下 Usage: java [SystemProperties] -jar post.jar [-h|-] [
[
正如我们之前所说,我们将索引solr安装中随附的“books.json”文件中的数据。 我们将在命令提示符中导航到solr-5.0.0\example\exampledocs
并发出以下命令。
java -Dtype=application/json -Durl=http://localhost:8983/solr/jcg/update -jar post.jar books.json
这里使用的SystemProperties是:
文件“books.json”现在将被索引,并且命令提示符将显示以下输出。
1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
现在打开以下URL,您将看到cat字段有多个值。
http://localhost:8983/solr/jcg/select?q=*
我们还可以在multiValue字段上查询,就像我们对单值字段执行查询一样。 打开以下URL,结果集将给予具有精装选项的书。
http://localhost:8983/solr/jcg/select?q=cat:hardcover
这是Solr Multivalue字段的示例。