如何在 Lucene 搜索语法中指定查询参数?
How to specify query parameter in Lucene search syntax?
我想对此发出获取请求https://musicbrainz.org/doc/MusicBrainz_API/Search music-API.I want it to search for the name of the album and the release format. The release format should be vinyl. You can search for these things in the query-part of the request. It works fine if I don't specify any format but when I do specify one it doesn't register and still shows other release-formats such as CD and Digital. This is the Url I'm using to do my request: https://musicbrainz.org/ws/2/release?query=depeche%20mode%20music%20for%20the%20massesANDformat%3AVinyl&fmt=json&limit=10
有谁知道我必须如何更改我的 URL 以便它只显示乙烯基格式?
看起来 Format
字段基于预定义值的约束列表 - 如 release format 列表页面所示。
因此,Lucene 索引可能已将此字段定义为 StringField
rather than a TextField
。
一个StringField
定义为:
A field that is indexed but not tokenized: the entire String value is indexed as a single token.
这意味着您无法搜索 vinyl
。您需要使用确切的值,可以是以下之一:
7" Vinyl
10" Vinyl
12" Vinyl
因此,为了解决这个问题,您可以按如下方式构建 Lucene 查询的那一部分:
AND (format:"7\" vinyl" OR format:"10\" vinyl" format:"12\" vinyl")
文本值被 "
包围,以确保整个术语在查询中被视为单个标记(以与索引中的单个标记完全匹配)。
反斜杠用于转义文本中的 "
。
整个 Lucene 查询因此变成这样:
title:"music for the masses" AND artist:"depeche mode" AND (format:"7\" vinyl" OR format:"10\" vinyl" OR format:"12\" vinyl")
添加到 URL 后,就变成了:
https://musicbrainz.org/ws/2/release?query=title:"music for the masses" AND artist:"depeche mode" AND (format:"7\" vinyl" OR format:"10\" vinyl" OR format:"12\" vinyl")&fmt=json
我将上面的内容粘贴到我的浏览器查询栏中,我在 JSON 响应中返回了 8 个发布对象。
当URL被URL编码时,结果如下:
https://musicbrainz.org/ws/2/release?query=title:%22music%20for%20the%20masses%22%20AND%20artist:%22depeche%20mode%22%20AND%20(format:%227\%22%20vinyl%22%20OR%20format:%2210\%22%20vinyl%22%20OR%20format:%2212\%22%20vinyl%22)&fmt=json
我在开头提到 因此有可能 格式字段(可能还有其他几个)被索引为字符串字段。我不知道这是事实 - 但这是我可以解释为什么我的查询有效而你的查询无效的唯一方法。所以我认为这是一个合理的假设 - 但我可能是错的。
我想对此发出获取请求https://musicbrainz.org/doc/MusicBrainz_API/Search music-API.I want it to search for the name of the album and the release format. The release format should be vinyl. You can search for these things in the query-part of the request. It works fine if I don't specify any format but when I do specify one it doesn't register and still shows other release-formats such as CD and Digital. This is the Url I'm using to do my request: https://musicbrainz.org/ws/2/release?query=depeche%20mode%20music%20for%20the%20massesANDformat%3AVinyl&fmt=json&limit=10 有谁知道我必须如何更改我的 URL 以便它只显示乙烯基格式?
看起来 Format
字段基于预定义值的约束列表 - 如 release format 列表页面所示。
因此,Lucene 索引可能已将此字段定义为 StringField
rather than a TextField
。
一个StringField
定义为:
A field that is indexed but not tokenized: the entire String value is indexed as a single token.
这意味着您无法搜索 vinyl
。您需要使用确切的值,可以是以下之一:
7" Vinyl
10" Vinyl
12" Vinyl
因此,为了解决这个问题,您可以按如下方式构建 Lucene 查询的那一部分:
AND (format:"7\" vinyl" OR format:"10\" vinyl" format:"12\" vinyl")
文本值被 "
包围,以确保整个术语在查询中被视为单个标记(以与索引中的单个标记完全匹配)。
反斜杠用于转义文本中的 "
。
整个 Lucene 查询因此变成这样:
title:"music for the masses" AND artist:"depeche mode" AND (format:"7\" vinyl" OR format:"10\" vinyl" OR format:"12\" vinyl")
添加到 URL 后,就变成了:
https://musicbrainz.org/ws/2/release?query=title:"music for the masses" AND artist:"depeche mode" AND (format:"7\" vinyl" OR format:"10\" vinyl" OR format:"12\" vinyl")&fmt=json
我将上面的内容粘贴到我的浏览器查询栏中,我在 JSON 响应中返回了 8 个发布对象。
当URL被URL编码时,结果如下:
https://musicbrainz.org/ws/2/release?query=title:%22music%20for%20the%20masses%22%20AND%20artist:%22depeche%20mode%22%20AND%20(format:%227\%22%20vinyl%22%20OR%20format:%2210\%22%20vinyl%22%20OR%20format:%2212\%22%20vinyl%22)&fmt=json
我在开头提到 因此有可能 格式字段(可能还有其他几个)被索引为字符串字段。我不知道这是事实 - 但这是我可以解释为什么我的查询有效而你的查询无效的唯一方法。所以我认为这是一个合理的假设 - 但我可能是错的。