admin:database-get-field-tokenizer-overrides( $config as element(configuration), $database-id as xs:unsignedLong, $field-name as xs:string ) as element(db:tokenizer-override)*
This function fetches any custom tokenizer override specifications for the specified field and database. For details, see Custom Tokenization in the Search Developer's Guide.
http://marklogic.com/xdmp/privileges/admin/database
http://marklogic.com/xdmp/privileges/admin/database/{id}
xquery version "1.0-ml"; import module namespace admin = "http://marklogic.com/xdmp/admin" at "/MarkLogic/admin.xqy"; let $config := admin:get-configuration() return admin:database-get-field-tokenizer-overrides( $config, xdmp:database("myDatabase"), "myField") (: Return the tokenizer override settings :)
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.