
admin.databaseForeignReplicaGetLagLimit( foreign-replica as element(db.foreignReplica) ) as Number
This function returns the lag limit value from the replica database configuration.
| Parameters | |
|---|---|
| foreign-replica | The configuration element for the foreign replica database. | 
  let admin = require("/MarkLogic/admin.xqy")
  let cfg = admin.getConfiguration()
  let freplica = admin.databaseGetForeignReplicas(cfg, xdmp.database("Documents"))
  admin.databaseForeignReplicaGetLagLimit(fn.head(freplica))
    
  
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.