Questions tagged [elasticsearch-synonym]

4 questions
1
vote
1 answer

Use of elasticsearches synonym filter's expand and lenient properties

Can anyone explain with an example, In synonym filter use of expand and lenient attributes. I went through this but still, I didn't get it. Thank you
randomDev
  • 73
  • 9
0
votes
2 answers

Elasticsearch synonym filter after stemmer sometimes does not work properly

With a simple analyzer that applies a synonym filter after a stemmer, sometimes for some stemmed words, the synonym does not work while the exact stemmed word is used in the synonym filter. First, I created an analyzer that applies a synonym filter…
0
votes
0 answers

Error 500 java.lang.NoClassDefFoundError: org/apache/lucene/queries/function/BoostedQuery

I am upgrading my solr version in existing application from solr 7.3.1 to 8.11.2. After upgrade my lucene synonyms stopped working and getting error
Nitu Dhaka
  • 1,300
  • 3
  • 14
  • 29
0
votes
1 answer

How implement updating index by synonyms without closing index?

I need implement search by synonyms, now it possible todo by closing index, update index by synonym filter, open index. The probem is that users can update synonym dictanory in any time, and it should not affect system, but when index closed,…