我想在marklogic的服务器端JavaScript中编写多语句事务。我想要实现的是,执行一个更新事务,然后编写一条查询语句,该语句查询更新后的文档并确认该更新在事务中可见,最后进行回滚。通过回滚,我想确认在事务内进行的更新在事务外不可见,并且在事务内可见。 为了使用xdmp:eval / xdmp.eval实现此目的,我在Xquery和服务器端JavaScript中都编写了代码。我能够使用Xquery成功实现它,但不能在服务器端Javascript中实现。
以下是我的Xquery代码:
xquery version "1.0-ml";
declare option xdmp:transaction-mode "update";
let $query :=
'xquery version "1.0-ml";
xdmp:document-insert("/docs/first.json", <myData/>)
'
return xdmp:eval(
$query, (),
<options xmlns="xdmp:eval">
<isolation>same-statement</isolation>
</options>);
if (fn:doc("/docs/first.json"))
then ("VISIBLE")
else ("NOT VISIBLE");
xdmp:rollback()
下面是我的服务器端JavaScript代码:
declareUpdate();
var query = 'declareUpdate(); xdmp.documentInsert("/docs/first.json",{"first": 1}); '
xdmp.eval(query,null,{isolation:'same-statement'})
fn.doc("/docs/first.json")
if (fn.doc("/docs/first.json"))
var result = ("visible")
else var result = ("not visible");
xdmp.rollback()
result
我正在通过查询控制台执行这两个代码。我希望在两种情况下都可以看到结果“可见”。但是,当运行服务器端JavaScript代码时,会抛出错误: [javascript] TypeError:由于xdmp.rollback,无法读取null的属性“ result” ,并且无法在变量“ result”中看到该值
有人可以更正我的服务器端javascript代码出了什么问题吗?
答案 0 :(得分:1)
在SJS和XQuery中,检查事务结果的方法是评估事务和检查中与编排外部语句不同的语句。
(XQuery分号语法将在不同事务中执行的语句分开-等效于一系列评估,而无需编排外部语句。)
类似以下的方法应该起作用:
'use strict';
xdmp.eval(
'declareUpdate(); xdmp.documentInsert("/docs/first.json",{"first": 1});',
null,
{isolation:'different-transaction'});
const doc = xdmp.eval(
'cts.doc("/docs/first.json")',
null,
{isolation:'different-transaction'});
fn.exists(doc);
也就是说,没有必要验证文档插入。如果插入失败,则服务器将引发错误。
也不必使用其他事务来读取插入的文档以将其返回。只需在xdmp.insert()调用后返回文档即可。
希望有帮助,