
admin.groupSetOptimizedPlanCacheTimeout( config as element(configuration), group-id as (Number|String), value as Number ) as element(configuration)
This function changes the optimized plan cache timeout.
http://marklogic.com/xdmp/privileges/admin/group-security
http://marklogic.com/xdmp/privileges/admin/group-security/{id}
const admin = require('/MarkLogic/admin.xqy');
const config = admin.getConfiguration()
const group = admin.groupGetId(config,"Default")
admin.groupSetOptimizedPlanCacheTimeout(config, group,256)
//Set the optimized plan cache timeout to 256 seconds. Use admin.saveConfiguration to save
//the changes to the configuration or pass the configuration to other Admin
//API functions to make other changes.