我正在使用Apache Marmotta LDPath选择某些rdf属性。文档(http://marmotta.apache.org/ldpath/language.html)表示未明确定义fn和lmf前缀。
我的代码是:
@prefix dc : <http://purl.org/dc/elements/1.1/> ;
id = . :: xsd:string ;
title = dc:title :: xsd:string ;
file = fn:content(.) :: lmf:text_es ;
但我得到下一个ParseException:
Caused by: org.apache.marmotta.ldpath.parser.ParseException: function with URI http://www.newmedialab.at/lmf/functions/1.0/content does not exist
at org.apache.marmotta.ldpath.parser.LdPathParser.getFunction(LdPathParser.java:213)
at org.apache.marmotta.ldpath.parser.LdPathParser.FunctionSelector(LdPathParser.java:852)
at org.apache.marmotta.ldpath.parser.LdPathParser.AtomicSelector(LdPathParser.java:686)
at org.apache.marmotta.ldpath.parser.LdPathParser.Selector(LdPathParser.java:607)
at org.apache.marmotta.ldpath.parser.LdPathParser.Rule(LdPathParser.java:441)
at org.apache.marmotta.ldpath.parser.LdPathParser.Program(LdPathParser.java:406)
at org.apache.marmotta.ldpath.parser.LdPathParser.parseProgram(LdPathParser.java:112)
at org.apache.marmotta.ldpath.LDPath.programQuery(LDPath.java:235)
... 47 more
编辑
我正在使用LDPath核心Fedora Duraspace 4.5.1。我的目标是Solr为二进制资源的全文本建立索引,无论如何继续对我有效。
最佳答案
向需要它的人
子集Apache Marmotta LDPath库似乎不支持fn:,lmf等复杂功能。
例如,要对二进制资源的全文进行索引,必须使用Apache Tika。