我目前正在使用MarkLogic提供的Java API运行一些查询。我已通过将所需的依赖项添加到我的库中来安装它。连接是使用以下命令设置的
DatabaseClient client = DatabaseClientFactory.newClient("localhost", 8000, secContext, ConnectionType.DIRECT);
从这里开始,一些XQueries使用下面显示的代码运行
ServerEvaluationCall evl = client.newServerEval().xquery(query);
EvalResultIterator evr = evl.eval();
while(evr.hasNext()){
//Do something with the results
}
但是,某些查询需要很长时间才能处理,从而导致内部错误。因此,除了减少所需的查询时间外,我想知道是否有办法克服这个问题?例如,增加连接时间限制。
====更新===
使用的查询
xquery version "1.0-ml";
let $query-opts := /comments[fn:matches(text,".*generation.*")]
return(
$query-opts, fn:count($query-opts), xdmp:elapsed-time()
)
我知道使用的正则表达式可以很容易地被单词查询所取代。但是对于这个例子,我只想使用正则表达式进行搜索。
示例数据
<comments>
<date_commented>1998-01-14T04:32:30</date_commented>
<text>iCloud sync settings are not supposed to change after an iOS update. In the case of iOS 10.3 this was due to a bug.</text>
<uri>/comment/000000001415898</uri>
</comments>
aluckdog
相关分类