: I using solr 3.3 which in schema.xml contain this : ... : however, when I try on /analysis.jsp, it show difference result compare to : using Lucene. ... : so my question is, how to make it analysis like in Lucene ?
To be certain of the differences, you need to be more explicit about what your low level lucene code looks like. My guess is that the "Version" param used when constructing StandardAnalyzer is different then the <luceneMatchVersion/> in your solrconfig.xml (you can override this for a single analyzer using <analyzer luceneMatchVersion="..." .../>) -Hoss