さて、私たちはかなり単純なシナリオであるべきものを持っています。
Marklogic dlsライブラリを使用してドキュメントを管理しているため、以下にコードを示します。
渡される変数は次のようになります。
$doc: =<root>
<node1>
<subnode/></node1>
<node2>
<status/>
</node2>
<root>
この関数は、ドキュメント内のいくつかの異なるノードを置き換え/更新します。チェックインしてから、IDとバージョンのペアのマップを返します。
declare function process-and-version($doc) {
for $sb in $doc/node1/subnode
return if ($sb/node3) then
xdmp:node-replace($sb/node3, <node3>foo</node>)
else
xdmp:node-insert-after($sb, <node3>foo</node>),
xdmp:node-replace($doc/status, <status>{$status}</status>),
dls:document-checkout-update-checkin("fn:base-uri($doc), $doc, "", fn:true()),
let $updated-version:=
<entry>{
let $version := c:get-latest-version($uri)
(:another function in our lib that uses cts:search:)
return ($doc/node1, <version>{$version}</version>)
}
</entry>
return $updated-version
};
XRAYを使用してこれをテストドライブし、次のエラーが発生します。
<error:error xsi:schemaLocation="http://marklogic.com/xdmp/error error.xsd" xmlns:error="http://marklogic.com/xdmp/error" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<error:code>XDMP-CONFLICTINGUPDATES</error:code>
<error:name></error:name>
<error:xquery-version>1.0-ml</error:xquery-version>
<error:message>Conflicting updates</error:message>
助けてくれてありがとう、
わたしは