hi,
I’m trying to make my index return all the results ignoring the accents in my search, so both “perú” and “peru” gets the exact same results
at the moment the best i have manage to do is to make “perú“ return the same result as “peru“ but not the other way around, this setting the chart table ú→u, but this is not really what i want as having the inverse is as important
this is the config of my distributed index
index searchnews{
charset_type = utf-8
charset_table = non_cjk,&,+,U+00E1->a, U+00E9->e, U+00ED->i, U+00F3->o, U+00FA->u,U+00C1->a, U+00C9->e, U+00CD->i, U+00D3->o, U+00DA->u,U+00F1->n, U+00D1->n,U+00FC->u, U+00DC->u
type = distributed
local = main_search
}
and this is the other one
index main_search{
source = main_search
path = /var/lib/manticore/main_search
charset_table = non_cjk,&,+,U+00E1->a, U+00E9->e, U+00ED->i, U+00F3->o, U+00FA->u,U+00C1->a, U+00C9->e, U+00CD->i, U+00D3->o, U+00DA->u,U+00F1->n, U+00D1->n,U+00FC->u, U+00DC->u
}
i have more index but is a main + delta so they almost the same
thanks for the help