Re: How to get solr synonyms in result set.

2013-05-05 Thread Upayavira
There is no way to identify *which* synonyms triggered in your search output. You could implement a synonyms search component, that looks in the stored values of configured fields for synonyms, and adds another block of XML to the output. This old be useful component. Upayavira On Mon, May 6, 20

Re: How to get solr synonyms in result set.

2013-05-05 Thread varun srivastava
Hi Suneel, After discovering that only query time synonym work with solr I found a good article on pros and cons of query and index time synonyms . It may help you http://nolanlawson.com/2012/10/31/better-synonym-handling-in-solr/ Regards Varun On Sun, May 5, 2013 at 9:20 AM, Erick Erickson wro

Re: How to get solr synonyms in result set.

2013-05-05 Thread Erick Erickson
Sure, you can specify a separate synonyms list at query time, just define an index and query time analysis chain one without the synonym filter factory and one without. Be aware that index-time and query-time have some different characteristics, especially around multi-word synonyms see: http://wi

Re: How to get solr synonyms in result set.

2013-05-04 Thread varun srivastava
Hi , Synonyms list is used at index time. So I dont think you can pass list at query time and make it work. On Fri, May 3, 2013 at 11:53 PM, Suneel Pandey wrote: > Hi, > > I want to get specific solr synonyms terms list during query time in result > set based on filter criteria. > I have implem