make url field case-insensitive
This commit is contained in:
parent
4140862328
commit
44d3e134fe
2 changed files with 8 additions and 1 deletions
|
@ -8,6 +8,12 @@
|
|||
"auto_expand_replicas": "${fess.index.auto_expand_replicas}"
|
||||
},
|
||||
"analysis": {
|
||||
"normalizer": {
|
||||
"useLowerCase": {
|
||||
"type": "custom",
|
||||
"filter": [ "lowercase" ]
|
||||
}
|
||||
},
|
||||
"char_filter": {
|
||||
"mapping_fa_filter": {
|
||||
"type": "mapping",
|
||||
|
|
|
@ -584,7 +584,8 @@
|
|||
"type": "keyword"
|
||||
},
|
||||
"url": {
|
||||
"type": "keyword"
|
||||
"type": "keyword",
|
||||
"normalizer": "useLowerCase"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue