You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by Apache Wiki <wi...@apache.org> on 2009/04/01 00:23:06 UTC

[Couchdb Wiki] Trivial Update of "Full text search" by RobertNewson

Dear Wiki user,

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

The following page has been changed by RobertNewson:
http://wiki.apache.org/couchdb/Full_text_search

The comment on the change is:
fix definition list

------------------------------------------------------------------------------
  
  You can install the httpd_handler as anything you like, but the name must match between the [external] and [httpd_db_handlers] section. The rest of the document assumes 'fti'.
  
- q:: the query to run (e.g, subject:hello)
+  q:: the query to run (e.g, subject:hello)
- sort:: the comma-separated fields to sort on. Prefix with / for ascending order and \ for descending order (ascending is the default if not specified).
+  sort:: the comma-separated fields to sort on. Prefix with / for ascending order and \ for descending order (ascending is the default if not specified).
- limit:: the maximum number of results to return
+  limit:: the maximum number of results to return
- skip:: the number of results to skip
+  skip:: the number of results to skip
- include_docs::  whether to include the source docs
+  include_docs::  whether to include the source docs
- stale=ok:: If you set the stale option ok, couchdb-lucene may not perform any refreshing on the index. Searches may be faster as Lucene caches important data (especially for sorting). A query without stale=ok will use the latest data committed to the index.
+  stale=ok:: If you set the stale option ok, couchdb-lucene may not perform any refreshing on the index. Searches may be faster as Lucene caches important data (especially for sorting). A query without stale=ok will use the  latest data committed to the index.
- debug:: if false, a normal application/json response with results appears. if true, an pretty-printed HTML blob is returned instead.
+  debug:: if false, a normal application/json response with results appears. if true, an pretty-printed HTML blob is returned instead.
  
  === Lucene reference implementation ===