Answer the question
In order to leave comments, you need to log in
Search engine?
Recently I needed a search with typos and so on. Installed elasticsearch. Out of the box, the search works well, but I couldn't manage to sort the result alphabetically. For example, there are phrases:
System of a down
My own system
System 27
Presystem
Systemode
{
"settings": {
"index": {
"analysis": {
"analyzer": {
"analyzer_startswith": {
"tokenizer": "keyword",
"filter": "lowercase"
}
}
}
}
},
"mappings": {
"test_index": {
"properties": {
"title": {
"search_analyzer": "analyzer_startswith",
"index_analyzer": "analyzer_startswith",
"type": "string"
}
}
}
}
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question