You are viewing a plain text version of this content. The canonical link for it is here.
Posted to solr-commits@lucene.apache.org by Apache Wiki <wi...@apache.org> on 2012/05/13 10:42:21 UTC

[Solr Wiki] Trivial Update of "SurroundQueryParser" by iorixxx

Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Solr Wiki" for change notification.

The "SurroundQueryParser" page has been changed by iorixxx:
http://wiki.apache.org/solr/SurroundQueryParser?action=diff&rev1=3&rev2=4

Comment:
surround's default operator limitation is added

  == Limitations ==
  Queries are not analyzed in any way, so to get good results, applications must be aware of how a text field is indexed. A  lightweight analysis chain such as lowercasing using the {{{LowerCaseFilterFactory }}} followed by the {{{EnglishMinimalStemFilterFactory }}}to remove plurals is recommended.
  
+ There is no room for default operator in surround query parser. For example, the query '''dog cat''' throws ParseException.
+ 
  == Examples ==