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 2008/04/04 21:34:55 UTC

[Couchdb Wiki] Update of "FullTextSearch" by MattGoodall

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 MattGoodall:
http://wiki.apache.org/couchdb/FullTextSearch

The comment on the change is:
Corrected a few typos

------------------------------------------------------------------------------
  
  ==== setup ====
  
- The indexer is started by CouchDB using the commandline specified in
+ The indexer is started by CouchDB using the command line specified in
- the couch.ini configurationparameter:
+ the couch.ini configuration parameter:
  
  {{{
  DbUpdateNotificationProcess
@@ -42, +42 @@

  it. The first line must be "ok\n". The next two lines contain the id of the 
  highest ranking document that matches the query and the score or rank: 
  "docid1\n7\n". These two lines are repeated for all matching documents. 
- The end of the result must be signalled with an empty newline "\n\n". 
+ The end of the result must be signaled with an empty newline "\n\n". 
  
  In case of an error, the first line consists of "error\n" and the second
  line of the error message: "Invalid Foo Condition\n".
  
  ==== setup ====
- The searcher is started by CouchDB using the commandline specified in
+ The searcher is started by CouchDB using the command line specified in
- the couch.ini configurationparameter:
+ the couch.ini configuration parameter:
  
  {{{
  FullTextSearchQueryServer
@@ -59, +59 @@

  === Lucene reference implementation ===
  
  ==== Use of special design document ====
- A database to index must contain a speciel design document in this format:
+ A database to index must contain a special design document in this format:
  
  {{{
  {
@@ -113, +113 @@

  At least Java version 5 is needed.
  
  ==== Compiling ====
- The Lucene searchengine is not build as part of the CouchDB. 
+ The Lucene search engine is not build as part of the CouchDB. 
  
  You need to:
   * setup a Java developer environment (at least version 5). 
@@ -129, +129 @@

  You need a path to your java runtime (at least version 5).
  You have to setup your java CLASSPATH to contain all the .jar files listed in the
  dependency list,
- alternatively you can specify it on the commandline deifined for the .ini options like:
+ alternatively you can specify it on the command line defined for the .ini options like:
  
  {{{
  FullTextSearchQueryServer=java -cp /path/to/couchdb4j/lib/couchdb4j.jar:...