
admin:forest-set-fast-data-max-size( $config as element(configuration), $forest-id as xs:unsignedLong, $value as xs:unsignedInt ) as element(configuration)
This function sets the allowable size (in megabytes) for data to be kept by a forest in its fast data directory, or 0 for no limit.
  xquery version "1.0-ml";
  import module namespace admin = "http://marklogic.com/xdmp/admin"
      at "/MarkLogic/admin.xqy";
  let $config := admin:get-configuration()
  return
  admin:forest-set-fast-data-max-size($config,
      admin:forest-get-id($config, "Documents"),
      16384)
      => sets the fast-data-max-size of the forest named "Documents" to
      16384 megabytes (16 gigabytes). Use admin:save-configuration to
      save the changes to the configuration or pass the configuration to
      other Admin API functions to make other changes.
  
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.