
admin.appserverGetDefaultInferenceSize( config as element(configuration), appserver-id as (Number|String) ) as Number
This function returns the default amount of memory (in megabytes) that can be used by sem:store for inference.
http://marklogic.com/xdmp/privileges/admin/app-server
http://marklogic.com/xdmp/privileges/admin/app-server/{id}
const admin = require('/MarkLogic/admin.xqy');
const config = admin.getConfiguration()
const groupId = admin.groupGetId(config, "Default")
admin.appserverGetDefaultInferenceSize(config,
admin.appserverGetId(config, groupId, "myAppServer"))
//Returns default memory size for inference, in megabytes
=>
100
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.