hi,
I using solr 3.3 which in schema.xml contain this :
<fieldType name="text_standard" class="solr.TextField">
<analyzer class="org.apache.lucene.
analysis.standard.StandardAnalyzer"/>
</fieldType>
i use the sentences as example "XY&Z Corporation - [email protected]"
however, when I try on /analysis.jsp, it show difference result compare to
using Lucene.
using solr I got result below when using "text_standard" and "text_general"
(is both the same ?)
XY Z Corporation xyz example.com (which all belong to <ALPHANUM>
)
when using Lucene, i got this
StandardAnalyzer:
1: [xy&z:0->4:<COMPANY>]
2: [corporation:5->16:<ALPHANUM>]
3: [[email protected]:19->34:<EMAIL>]
so my question is, how to make it analysis like in Lucene ?
regards,
kiwi