我们如何对路径范围查询进行不区分大小写的搜索?
我想对路径进行不区分大小写的搜索:
/pathSyntax = (case insensitive value of $Type)
用于路径范围搜索的样本查询格式,我需要使该路径范围查询搜索不区分大小写:,是否需要在为此创建的索引中进行更改?
let $xyz:= cts:and-query((
cts:collection-query(concat("xyz://", val, "/test")),
cts:path-range-query("/pathSyntax", "=",$Type)
))
以下是范围路径索引:
{
"scalar-type": "string",
"path-expression": "/pathSyntax",
"collation": "http://marklogic.com/collation/",
"range-value-positions": false,
"invalid-values": "reject"
},
解决方法:
您可以使用不区分大小写的排序规则来索引路径.
例如,http://marklogic.com/collation/en/S1
是不区分大小写/变音符号的英文字符编码,或http://marklogic.com/collation/zh-CN/S2,它是变音符号且性能可能更好.
{
"scalar-type": "string",
"path-expression": "/pathSyntax",
"collation": "http://marklogic.com/collation/en/S1",
"range-value-positions": false,
"invalid-values": "reject"
}
根据查询的默认排序规则,您可能还需要在cts:path-range-query
中将排序规则指定为选项:
cts:path-range-query("/pathSyntax", "=", $Type, "collation=http://marklogic.com/collation/en/S1")