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
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
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
Srini -
This "text" datatype comes as sample configuration in SOLR distribution. Check
this, it may suit your need!
-Jeevanandam
On Apr 10, 2
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
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
> 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"