gpt4 book ai didi

sparql - Apache 耶拿文本 :query on multiple fields

转载 作者:行者123 更新时间:2023-12-04 18:02:15 27 4
gpt4 key购买 nike

是否可以在 Apache Jena 中搜索多个字段:

例如这很好用:

?subject text:query (skos:prefLabel 'a*' 25);

但是如何在 2 个字段中使用 OR 进行搜索,例如在 prefLabel 或 altLabel 中。

?subject text:query (skos:prefLabel 'a*' OR skos:altLabel 'a*' 25);

我的实体图是:

<#entMap> a text:EntityMap ;
text:entityField "uri" ;
text:langField "lang" ;
text:graphField "graph" ; ## enable graph-specific indexing
text:defaultField "prefLabel" ; ## Must be defined in the text:map
text:uidField "uid" ; ## Must be defined for deletion
text:map (
# skos:prefLabel
[ text:field "prefLabel" ; text:predicate skos:prefLabel ]
# skos:altLabel
[ text:field "altLabel" ; text:predicate skos:altLabel ]
# skos:hiddenLabel
[ text:field "hiddenLabel" ; text:predicate skos:hiddenLabel ]
) .

最佳答案

我不是特别精通 Apache Jena,但关于 SPARQL,您可以对两个文本搜索执行联合(注意:这更像是 AND 而不是 OR)。

{
?subject text:query (skos:prefLabel 'a*' 25);
}
UNION
{
?subject text:query (skos:altLabel 'a*' 25);
}

关于sparql - Apache 耶拿文本 :query on multiple fields,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33151774/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com