Lucene Search Query Help
Contents
Lucene Search Query Help
Terms
A query is broken up into terms and operators. There are two types of terms: Single Terms and Phrases.- A Single Term is a single word such as "test" or "hello".
- A Phrase is a group of words surrounded by double quotes such as "hello dolly".
Wildcard Searches
Lucene supports single and multiple character wildcard searches within single terms (not within phrase queries).- To perform a single character wildcard search use the "?" symbol.
- To perform a multiple character wildcard search use the "*" symbol.
te?t
test*
te*t
Boolean Operators
Boolean operators allow terms to be combined through logic operators. Lucene supports AND, "+", OR, NOT and "-" as Boolean operators(Note: Boolean operators must be ALL CAPS). The OR operator is the default conjunction operator. This means that if there is no Boolean operator between two terms, the OR operator is used. The OR operator links two terms and finds a matching document if either of the terms exist in a document. This is equivalent to a union using sets. The symbol || can be used in place of the word OR. To search for documents that contain either "jakarta apache" or just "jakarta" use the query:"jakarta apache" jakarta"jakarta apache" OR jakartaAND
The AND operator matches documents where both terms exist anywhere in the text of a single document. This is equivalent to an intersection using sets. The symbol && can be used in place of the word AND. To search for documents that contain "jakarta apache" and "Apache Lucene" use the query:"jakarta apache" AND "Apache Lucene"
+
The "+" or required operator requires that the term after the "+" symbol exist somewhere in a the field of a single document. To search for documents that must contain "jakarta" and may contain "lucene" use the query:+jakarta lucene
NOT
The NOT operator excludes documents that contain the term after NOT. This is equivalent to a difference using sets. The symbol ! can be used in place of the word NOT. To search for documents that contain "jakarta apache" but not "Apache Lucene" use the query:"jakarta apache" NOT "Apache Lucene"
NOT "jakarta apache"-
The "-" or prohibit operator excludes documents that contain the term after the "-" symbol. To search for documents that contain "jakarta apache" but not "Apache Lucene" use the query:"jakarta apache" -"Apache Lucene"
Grouping
Lucene supports using parentheses to group clauses to form sub queries. This can be very useful if you want to control the boolean logic for a query. To search for either "jakarta" or "apache" and "website" use the query:(jakarta OR apache) AND website
Field Grouping
Lucene supports using parentheses to group multiple clauses to a single field. To search for a title that contains both the word "return" and the phrase "pink panther" use the query:title:(+return +"pink panther")
Escaping Special Characters
Lucene supports escaping special characters that are part of the query syntax. The current list special characters are+ - && || ! ( ) { } [ ] ^ " ~ * ? : \\(1\+1\)\:2
Searchable fields
XWiki documents contain wiki content and meta-information, lucene indexes such information in fields.wiki
In a wiki farm you can specify a wiki to search in with the "wiki:" prefix. Look for the word "test" in the wiki "mywiki":test AND wiki:mywiki
title
Look for documents with title "Welcome to your wiki":title:"Welcome to your wiki"name
Look for documents named "WebHome":name:WebHome
lang
Look for "Voila" in french documents :Voila AND lang:fr
type
Type of a document: "attachment", "wikipage" or "objects", used to control presentation of searchresults. Look for "test" in attachments :test AND type:attachment
filename
Look for attachments with a filename starting by "test":filename:test*
object
The "object:" prefix allow to search for pages containing objects from a specific class. Look for comments containing the word "test":test AND object:XWiki.XWikiComments
author
Look for documents last modified by XWiki.Admin:author:XWiki.Admin
date
Date format: yyyyMMddHHmm Look for documents last modified on 2009/07/08:date:20090708*
creator
Look for documents created by XWiki.Admin:creator:XWiki.Admin
creationdate
Date format: yyyyMMddHHmm Look for documents created on 2009/07/08:creationdate:20090708*