Skip to content
This repository has been archived by the owner on Nov 9, 2022. It is now read-only.

Server information

isubiker edited this page Aug 30, 2011 · 9 revisions

Server Information

Returns information about the MarkLogic server version, hardware and index settings and much more. To access this information make a GET request to the manage endpoint:

/manage

This request will return with a response similar to:

{
    "libraryVersion":"1.0",
    "serverVersion":"4.2-5",
    "architecture": "x86_64",
    "platform": "linux",
    "hosts": [
        {
            "id": 11348666085588525124,
            "name": "developer.marklogic.com"
        }
    ],
    "indexes": {
        "stemming": "basic",
        "uris": false,
        "collectionLexicon": false,
        "caseSensitive": true,
        "diacriticSensitive": true,
        "keyValueCharacters": false,
        "keyValueWords": true,
        "keyValuePhrases": true,
        "keyValueTrailingWildcards": false,
        "ranges": [
            {
                "name": "author",
                "key": "author",
                "type": "string",
                "operator": "eq"
            }
        ],
        "fields": [
            {
                "name": "title",
                "includedKeys": ["title", "subtitle"],
                "excludedKeys": []
            }
        ],
        "mappings": [{
            "name": "editor",
            "key": "editedBy",
            "mode": "contains"
        ]}
    },
    "settings": {
        "directoryCreation": "automatic"
    },
    "statistics": {
        "JSONDocumentCount": 1000000,
        "XMLDocumentCount": 1000000
    }
}
Clone this wiki locally