Is there a way to dynamically update a synonym file without restarting Solr server?
问题 As we know there is a synonym.txt file in conf directory, which I wanted to update whenever I found some new synonym words... So is there any way to update that file dynamically without restarting the Solr server and will my search result consider the new synonym words?? please help me if anyone have any idea.. thanks in advance... 回答1: I think you can build your own SynonymFilterFactory that extends the original and use your a custom FSTSynonymFilterFactory as delegator. your