
flexrep:configuration-get( $domain-id as xs:unsignedLong, [$assert as xs:boolean] ) as element(flexrep:configuration)?
This function gets the replication configuration for a CPF domain.
| Parameters | |
|---|---|
| domain-id | The ID of the replicated domain. |
| assert |
Set to true to throw an exception if the configuration does
not exist. The default value is false.
|
xquery version "1.0-ml";
import module namespace flexrep = "http://marklogic.com/xdmp/flexible-replication"
at "/MarkLogic/flexrep.xqy";
(: Obtain the domain ID from the database used by the Master to enable CPF. :)
let $domain:= xdmp:eval(
'xquery version "1.0-ml";
import module namespace dom = "http://marklogic.com/cpf/domains"
at "/MarkLogic/cpf/domains.xqy";
fn:data(dom:get( "Default Master" )//dom:domain-id)',
(),
<options xmlns="xdmp:eval">
<database>{xdmp:database("Triggers")}</database>
</options>)
return
flexrep:configuration-get($domain, fn:true())
(: Returns the replication configuration element for the "Replicated Content"
domain. :)
http://marklogic.com/xdmp/privileges/flexrep-admin
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.