You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by Apache Wiki <wi...@apache.org> on 2008/01/16 12:13:58 UTC

[Jackrabbit Wiki] Update of "Search" by MarcelReutegger

Dear Wiki user,

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

The following page has been changed by MarcelReutegger:
http://wiki.apache.org/jackrabbit/Search

------------------------------------------------------------------------------
  || autoRepair || true || Errors detected by a consistency check are automatically repaired. If false, errors are only written to the log. || 1.0 ||
  || analyzer || {{{org.apache.lucene.analysis.standard.StandardAnalyzer}}} || Class name of a lucene analyzer to use for fulltext indexing of text. || 1.0 ||
  || queryClass || {{{org.apache.jackrabbit.core.query.QueryImpl}}} || Class name that implements the {{{javax.jcr.query.Query}}} interface. This class must also extend from the class: {{{org.apache.jackrabbit.core.query.AbstractQueryImpl}}} || 1.0 ||
- || respectDocumentOrder || true || If true and the query does not contain an 'order by' clause, result nodes will be in document order. For better performance when queries return a lot of nodes set to 'false'. || 1.0 ||
+ || respectDocumentOrder || true, >=1.5: false || If true and the query does not contain an 'order by' clause, result nodes will be in document order. For better performance when queries return a lot of nodes set to 'false' (In 1.5 'false' is now the default). || 1.0 ||
  || textFilterClasses || {{{org.apache.jackrabbit.core.query.lucene.TextPlainTextFilter}}} || Sets the list of text filters (and text extractors) to use for extracting text content from binary properties. The list must be comma (or whitespace) separated, and contain fully qualified class names of the {{{TextFilter}}} (and since 1.3 {{{TextExtractor}}} ) classes to be used. The configured classes must all have a public default constructor. || 1.0 ||
  || resultFetchSize || 2147483647 || The number of results the query handler should initially fetch when a query is executed. Default value: Integer.MAX_VALUE (-> all) || 1.2.1 ||
  || extractorPoolSize || 0 || Defines the maximum number of background threads that are used to extract text from binary properties. If set to zero (default) no background threads are allocated and text extractors run in the current thread. || 1.3 ||