You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jena.apache.org by os...@apache.org on 2016/05/20 13:50:05 UTC

svn commit: r1744741 - /jena/site/trunk/content/documentation/query/text-query.mdtext

Author: osma
Date: Fri May 20 13:50:04 2016
New Revision: 1744741

URL: http://svn.apache.org/viewvc?rev=1744741&view=rev
Log:
Documentation for JENA-1180 by Andrew Dolby

Modified:
    jena/site/trunk/content/documentation/query/text-query.mdtext

Modified: jena/site/trunk/content/documentation/query/text-query.mdtext
URL: http://svn.apache.org/viewvc/jena/site/trunk/content/documentation/query/text-query.mdtext?rev=1744741&r1=1744740&r2=1744741&view=diff
==============================================================================
--- jena/site/trunk/content/documentation/query/text-query.mdtext (original)
+++ jena/site/trunk/content/documentation/query/text-query.mdtext Fri May 20 13:50:04 2016
@@ -339,11 +339,16 @@ the `TextIndexLucene` resource:
 
 New in Jena 3.1.0.
 
-It is possible to select another query parser (currently only
-AnalyzingQueryParser is supported) instead of the default QueryParser. The
-main difference between these query parsers is that AnalyzingQueryParser
-performs analysis also for wildcard queries. This is useful in combination
-with accent-insensitive wildcard queries. The query parser is specified on
+It is possible to select a query parser other than the default QueryParser.
+
+The available `QueryParser` implementations are:
+
+* `AnalyzingQueryParser`: Performs analysis for wildcard queries . This is useful in combination
+with accent-insensitive wildcard queries.
+* `ComplexPhraseQueryParser`: Permits complex phrase query syntax. Eg: "(john jon jonathan~) peters*".
+This is useful for performing wildcard or fuzzy queries on individual terms in a phrase.
+
+The query parser is specified on
 the `TextIndexLucene` resource:
 
     <#indexLucene> a text:TextIndexLucene ;
@@ -728,4 +733,4 @@ then use the following maven dependency:
     </dependency>
 
 adjusting the version <code>X.Y.Z</code> as necessary.  This will automatically
-include a compatible version of Lucene and the Solr java client, but not Solr server.
+include a compatible version of Lucene and the Solr java client, but not Solr server.
\ No newline at end of file