*** empty log message ***

This commit is contained in:
dockes 2006-01-04 11:16:40 +00:00
parent b0f02f0268
commit 9955e5b1b0
2 changed files with 36 additions and 19 deletions

View File

@ -1,5 +1,5 @@
A more complete version of this document can be found at http://www.recoll.org More documentation can be found in the doc/ directory or at http://www.recoll.org
Link: HOME Link: HOME

View File

@ -1,5 +1,5 @@
A more complete version of this document can be found at http://www.recoll.org More documentation can be found in the doc/ directory or at http://www.recoll.org
Recoll user manual Recoll user manual
@ -35,6 +35,8 @@ A more complete version of this document can be found at http://www.recoll.org
2.3. Starting indexation 2.3. Starting indexation
2.4. Using cron to automate indexation
3. Searching 3. Searching
3.1. Simple search 3.1. Simple search
@ -85,8 +87,8 @@ A more complete version of this document can be found at http://www.recoll.org
Also be aware that you will need to install the appropriate supporting Also be aware that you will need to install the appropriate supporting
applications for document types that need them (for example antiword for applications for document types that need them (for example antiword for
ms-word files), and that the default character set is iso8859-1, which may ms-word files), and that the default character set used to read raw text
not be appropriate for you. files for indexing is iso8859-1, which may not be appropriate for you.
---------------------------------------------------------------------- ----------------------------------------------------------------------
@ -123,10 +125,11 @@ A more complete version of this document can be found at http://www.recoll.org
1.3. Recoll overview 1.3. Recoll overview
Recoll uses the Xapian information retrieval library as its storage and Recoll is a full text search application which uses the Xapian information
retrieval engine. Xapian is a very mature package using a sophisticated retrieval library as its storage and retrieval engine. Xapian is a very
probabilistic ranking model. Recoll provides the interface to get data mature package using a sophisticated probabilistic ranking model. Recoll
into (indexation) and out (searching) of the system. provides the interface to get data into (indexation) and out (searching)
of the system.
In practice, Xapian works by remembering where terms appear in your In practice, Xapian works by remembering where terms appear in your
document files. The acquisition process is called indexation. document files. The acquisition process is called indexation.
@ -221,6 +224,20 @@ A more complete version of this document can be found at http://www.recoll.org
Alternatively, you can start recollindex -z, which will reset the database Alternatively, you can start recollindex -z, which will reset the database
before indexation. before indexation.
----------------------------------------------------------------------
2.4. Using cron to automate indexation
The most common way to set up indexation is to have a cron task execute it
every night. For example the following crontab entry would do it every day
at 3:30AM (supposing recollindex is in your PATH):
30 3 * * * recollindex > /tmp/recolltrace 2>&1
The usual command to edit your crontab is crontab -e (which will usually
start the vi editor to edit the file). You may have more sophisticated
tools available on your system.
---------------------------------------------------------------------- ----------------------------------------------------------------------
Chapter 3. Searching Chapter 3. Searching
@ -274,20 +291,20 @@ A more complete version of this document can be found at http://www.recoll.org
3.4. Search tips, shortcuts 3.4. Search tips, shortcuts
Entering a capitalized word in any search field will prevent stem Disabling stem expansion. Entering a capitalized word in any search field
expansion (no search for gardening if you enter Garden instead of garden). will prevent stem expansion (no search for gardening if you enter Garden
This is the only case where character case will make a difference for a instead of garden). This is the only case where character case will make a
Recoll search. difference for a Recoll search.
A phrase can be looked for by enclosing it in double quotes. Example: Phrases. A phrase can be looked for by enclosing it in double quotes.
"user manual" will look only for occurrences of user immediately followed Example: "user manual" will look only for occurrences of user immediately
by manual. You can use the This exact phrase field of the advanced search followed by manual. You can use the This exact phrase field of the
dialog to the same effect. advanced search dialog to the same effect.
Entering ^Q almost anywhere will close the application. Quitting. Entering ^Q almost anywhere will close the application.
Entering ^W in a preview tab will close it (and, for the last tab, close Closing previews. Entering ^W in a preview tab will close it (and, for the
the preview window). last tab, close the preview window).
---------------------------------------------------------------------- ----------------------------------------------------------------------