简体   繁体   中英

How to get the list of analyzers in arangodb

How to get the list of all analyzers including custom and system ones present in the arangodb.

Thanks, Nilotpal

Connect to arangosh:

 a = require("@arangodb/analyzers")

output:

{
"ArangoAnalyzer" : function ArangoAnalyzer (data) { ... },
"analyzer" : [Function "(name)" ...],
"remove" : [Function "(name, force)" ...],
"save" : [Function "(name, type, properties, features)" ...],
"toArray" : [Function "()" ...]
}

Then print the result in a:

a.toArray()

output:

[
[ArangoAnalyzer "text_fi" (type text)],
[ArangoAnalyzer "text_en" (type text)],
[ArangoAnalyzer "identity" (type identity)],
[ArangoAnalyzer "text_de" (type text)],
[ArangoAnalyzer "text_it" (type text)],
[ArangoAnalyzer "text_es" (type text)],
[ArangoAnalyzer "text_ru" (type text)],
[ArangoAnalyzer "text_fr" (type text)],
[ArangoAnalyzer "text_nl" (type text)],
[ArangoAnalyzer "text_no" (type text)],
[ArangoAnalyzer "text_pt" (type text)],
[ArangoAnalyzer "text_sv" (type text)],
[ArangoAnalyzer "text_zh" (type text)]
]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM