Re: Help Needed: Distributed update Async Exception solr 8.8.2 - Update

2021-08-25 Thread Shawn Heisey
On 8/24/2021 10:08 PM, Reej Nayagam wrote: Okay, Got your point. But we cannot modify the java code to stop commits for now. So my manager suggests we comment out the auto commit in solrconfig instead, We are not sure if that is correct. His point is, let us commit every time we index (that is

ICUFoldingFilter with preserveOriginal option?

2021-08-25 Thread Jan Høydahl
Hi, I'm looking at using ICUFoldingFilter for a customer, to fold e.g. Genéve to Geneve and thus get better recall. However, for some common Norwegian words, the folding makes them clash with super-common words so it becomes impossible to find exactly what you want. I imagined if ICUFoldingFilte

Suggester only returning on suggestion

2021-08-25 Thread Kien, Theo
Dear Solr user community, I have started to use the Solr 8.9 suggester. The definition is as follows: { "searchComponent":{ "suggest_test":{ "name":"suggest_test", "class":"solr.SuggestComponent", "suggester":{ "name":"combinedSuggester",

Re: ICUFoldingFilter with preserveOriginal option?

2021-08-25 Thread André Widhani
Not with ICUFoldingFilter, but with the MappingCharFilter. There you can supply a mapping file and skip baseletter mappings for the users' native language, because in their own language, they know the correct spelling ... most of the time ... sometimes. This does really help with multiple langu

Re: ICUFoldingFilter with preserveOriginal option?

2021-08-25 Thread Markus Jelsma
Hoi Jan, ICUFoldingFilter and ASCIIFoldingFilter i think do not respect the keyword=true attribute when i last checked. If you use KeywordRepeatFilter and modify the said TokenFilters to respect the keyword attribute, the problem seems solved. Regards, Markus 2021-08-25 16:32 GMT+02:00, André Wi