Re: Solr is indexing but not showing results

2012-04-09 Thread Walter Underwood
There are some well-understood problems with query-time synonyms. Read about them here: http://wiki.apache.org/solr/AnalyzersTokenizersTokenFilters#solr.SynonymFilterFactory Expanding synonyms at both index and query time causes a different problem, over-counting the score for any term in the s

Re: Solr is indexing but not showing results

2012-04-09 Thread Jeevanandam Madanagopal
I agree partially, it actually depends. For instance during index time few of the synonyms mapping may or may not expand (for e.g.. frequent data index population from different source). So good apply at index time as well as query time to achieve complete ratio. Mostly of the time I did similar

Re: Solr is indexing but not showing results

2012-04-09 Thread Walter Underwood
That is not a good configuration. Synonyms should be expanded at index time, not query time. --wunder On Apr 9, 2012, at 11:43 AM, Jeevanandam Madanagopal wrote: > Srini - > > This "text" datatype comes as sample configuration in SOLR distribution. > Check this, it may suit your need! > > au

Re: Solr is indexing but not showing results

2012-04-09 Thread Jeevanandam Madanagopal
Srini - This "text" datatype comes as sample configuration in SOLR distribution. Check this, it may suit your need! -Jeevanandam On Apr 10, 2

Re: Solr is indexing but not showing results

2012-04-09 Thread Walter Underwood
You will need to define or customize a field type for text. The example schema.xml file that is installed with Solr 3.5 has a several kinds of text fields, "text_general" and "text_en" are good places to start. You can use one of those, then customize it. wunder On Apr 9, 2012, at 11:27 AM, s

Re: Solr is indexing but not showing results

2012-04-09 Thread srini
Hi Thanks for your reply. As per your suggestion I changed XML field type to text. but when I start solr it is throwing following exception. SEVERE: org.apache.solr.common.SolrException: Unknown fieldtype 'text' specified on field XML Any suggestions!!(Thanks for your reply) -- View this m

Re: Solr is indexing but not showing results

2012-04-09 Thread Ahmet Arslan
> stored="true" > required="true"/> > stored="true" > required="true"/>      String type is not tokenized. Indexed verbatim. Use a different type for full text search. e.g. type="text"