[ https://issues.apache.org/jira/browse/SOLR-1604?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Ahmet Arslan updated SOLR-1604: ------------------------------- Attachment: ComplexPhrase.zip To enable ComplexPhraseQueryParser in Solr 1.4.0 1-) extract ComplexPhrase.zip and run 'mvn package' 2-) copy the ComplexPhrase/target/ComplexPhrase-1.0.jar to solrhome/lib directory 3-) register queryparser to solrhome/conf/solrconfig.xml by adding <queryParser name="complexphrase" class="org.apache.solr.search.ComplexPhraseQParserPlugin" /> 4-) enable it by appending &defType=complexphrase to search url. 5-) More permanent usage can be configured in solrconfig.xml <requestHandler name="standard" class="solr.StandardRequestHandler" default="true"> <lst name="defaults"> <str name="defType">complexphrase</str> </lst> </requestHandler> > Wildcards, ORs etc inside Phrase Queries > ---------------------------------------- > > Key: SOLR-1604 > URL: https://issues.apache.org/jira/browse/SOLR-1604 > Project: Solr > Issue Type: Improvement > Components: search > Affects Versions: 1.4 > Reporter: Ahmet Arslan > Priority: Minor > Attachments: ComplexPhrase.zip > > > Solr Plugin for ComplexPhraseQueryParser (LUCENE-1486) which supports > wildcards, ORs, ranges, fuzzies inside phrase queries. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.