Re: Refresh of synonyms.txt without reload

2008-09-25 Thread Batzenmann
in context: http://www.nabble.com/Refresh-of-synonyms.txt-without-reload-tp19629361p19669366.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Refresh of synonyms.txt without reload

2008-09-25 Thread Walter Underwood
First, define separate analyzer/filter chains for index and query. Do not include synonyms in the query chain. Second, use a separate indexing system and use Solr index distribution to sync the indexes to one or more query systems. This will create a new Searcher and caches on the query systems,

Re: Refresh of synonyms.txt without reload

2008-09-25 Thread Batzenmann
as 'separate indexing system', I'll run into the same issue, where I still think restarting the app every time s.o. adds/removes/alters a synonym is not an desirable solution. Axel -- View this message in context: http://www.nabble.com/Refresh-of-synonyms.txt-without-reload-tp19629361p19671877.html Sent

Re: Refresh of synonyms.txt without reload

2008-09-25 Thread Otis Gospodnetic
: Refresh of synonyms.txt without reload Walter Underwood wrote: First, define separate analyzer/filter chains for index and query. Do not include synonyms in the query chain. Second, use a separate indexing system and use Solr index distribution to sync the indexes to one or more query

Re: Refresh of synonyms.txt without reload

2008-09-24 Thread Walter Underwood
More details on index-time vs. query-time synonyms are here: http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters#SynonymFilter wunder On 9/23/08 7:47 AM, Walter Underwood [EMAIL PROTECTED] wrote: This is probably not useful because synonyms work better at index time than at query

Refresh of synonyms.txt without reload

2008-09-23 Thread Batzenmann
-Is-it-possible-to-add-synonyms-run-time--td15089111.html Re: Is it possible to add synonyms run time? -- View this message in context: http://www.nabble.com/Refresh-of-synonyms.txt-without-reload-tp19629361p19629361.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Refresh of synonyms.txt without reload

2008-09-23 Thread Walter Underwood
This is probably not useful because synonyms work better at index time than at query time. Reloading synonyms also requires reindexing all the affected documents. wunder On 9/23/08 7:45 AM, Batzenmann [EMAIL PROTECTED] wrote: Hi, I'm quite new to solr and I'm looking for a way to extend