xdmp:gzip

xdmp:gzip(
   $node as node()
) as binary()

Summary

Create a gzip node from a node.

Parameters
node The node that you want to gzip up.

Example

let $gzip := xdmp:gzip(doc("/mydoc.xml"))
return
xdmp:save("c:/tmp/myzip.gz", $gzip)

(: Creates a gzip file from the document "/mydoc.xml", then
 : saves that to the filesystem. :)

Powered by MarkLogic Server | Terms of Use | Privacy Policy