Skip to content

Instantly share code, notes, and snippets.

View carantunes's full-sized avatar

Carina de Oliveira Antunes carantunes

View GitHub Profile
@carantunes
carantunes / elasticsearch: case accent insensitive
Last active August 17, 2020 14:22
case and accent insensitive mapping and query in elasticsearch
PUT /my_index
{
"settings": {
"analysis": {
"analyzer": {
"case_accent_analyzer": {
"tokenizer": "standard",
"filter": [
"lowercase",
"asciifolding"