admin:cluster-get-language-baseline

admin:cluster-get-language-baseline(
   $config as element(configuration)
) as xs:string

Summary

This function returns the language baseline of this cluster. As of 11.3.0, "legacy" is not supported and "ml9" is the default. The language baseline defines the default language configuration to use. Clusters upgraded from MarkLogic server 11.2 or before with language baseline of "legacy" would need to switch to "ml9" and reindex manually before upgrade.

Parameters
config A configuration specification, typically as returned from one of the Admin module functions.

Example


  xquery version "1.0-ml";

  import module namespace admin = "http://marklogic.com/xdmp/admin"
      at "/MarkLogic/admin.xqy";

  let $cfg := admin:get-configuration()

  return admin:cluster-get-language-baseline($cfg)

  (: Returns the language baseline of this cluster. :)
    
Powered by MarkLogic Server | Terms of Use | Privacy Policy