Manticoresearch
APIs for ManticoreSearch : http://127.0.0.1:8016/docs#/manticoresearch
Supported types
int : an integer value.
float : a float value.
text : an array of character.
timestamp : a date supported by the dateparser library (https://pypi.org/project/dateparser/)
json : a json object
Supported index options
Supported global options
Examples
curl -X 'POST' \
'http://127.0.0.1:8016/collection/manticoresearch' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"collection": "collection1",
"namespace": "namespace1",
"fields": {
"field1": {
"type": "text",
"index": {
"stored": true
}
},
"field2": {
"type":"json"
},
"id": {
"type":"int"
}
},
"global_options": {
"min_infix_len": 3
}
}'