鉴于这样的集合:
collection : [
'doc1.json' : {
someXPath : [
{ expression : 'a' },
{ expression : 'b' },
{ expression : 'c' },
],
otherLargeObject : [ ... ]
},
'doc2.json' : {...},
'doc3.json' : {...}
]
使用 Xquery 我可以按如下方式选择集合的子节点:
fn:doc()//someXPath/expression/text()
产生了这样的结果:
[ 'a', 'b', 'c', ... ]
以上语法简洁,结果只包含我想要的数据。
使用 Javascript 我会尝试以下方法:
var results = [];
for (var doc of fn:doc()) {
if (doc.someXPath) {
results.push(doc.someXPath.map(function (x) {
return x.expression;
})
}
}
javascript代码冗长而不是多功能。 xquery示例匹配具有不同嵌套级别的其他文档结构,而无需额外条件。
doc 迭代器是在内存中检索整个文档还是只检索被访问的部分?例如在JavaScript版本中将otherLargeObject加载到内存中? javascript版本和xquery版本一样高效吗?
以下是可能的吗?
var result = [];
for (var justTheNodesIWant in fn:doc()('//someXPath/expression/text()') {
result.concat(justTheNodesIWant);
}
result; // ['a', 'b', 'c', ... ]
是否有使用服务器端javascript实现xquery结果和性能的等效方法?
答案 0 :(得分:3)
以下内容可行:
var results = [];
for (var exp of xdmp.xqueryEval('fn:doc()/someXPath/expression')) {
results.push(exp);
}
results
缺点是语言的混合,包括在字符串中嵌入代码。