admin.clusterGetLanguageBaseline( config as element(configuration) ) as String
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. |
const admin = require('/MarkLogic/admin.xqy'); const cfg = admin.getConfiguration() admin.clusterGetLanguageBaseline(cfg) //Returns the language baseline of this cluster.
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.