Difference between revisions of "Kiwix-index"

From Kiwix
Jump to navigation Jump to search
(Created page with "'''kiwix-manage''' is a console tool which allows to build the fulltext search index corresponding to a ZIM file. == Technical details == kiwix-manage is based on a kiwix::I...")
 
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
'''kiwix-manage''' is a console tool which allows to build the fulltext search index corresponding to a ZIM file.
'''kiwix-index''' is a console tool which allows to build the fulltext search index corresponding to a ZIM file.
 
== Technical details ==
 
kiwix-manage is based on a kiwix::Indexer class coded in C++ and using Xapian or CLucene as backend.


== Usage ==
== Usage ==


<source lang="bash">
<source lang="bash">
kiwix-index [--verbose|-v] [--backend|-b=xapian|clucene] ZIM_PATH INDEX_PATH
kiwix-index [--verbose|-v] ZIM_PATH INDEX_PATH
</source>
</source>
== Technical details ==
kiwix-index is based on a kiwix::Indexer class coded in C++ and use [http://www.xapian.org Xapian] as backend.
== Other ==
''You may also create the index directly from the Kiwix UI by searching for a sentence not matching any article title.''


== See also ==
== See also ==
* [[kiwix-manage]]
* [[kiwix-manage]]
* [[kiwix-install]]
* [[kiwix-install]]

Latest revision as of 17:12, 1 August 2015

kiwix-index is a console tool which allows to build the fulltext search index corresponding to a ZIM file.

Usage

kiwix-index [--verbose|-v] ZIM_PATH INDEX_PATH

Technical details

kiwix-index is based on a kiwix::Indexer class coded in C++ and use Xapian as backend.

Other

You may also create the index directly from the Kiwix UI by searching for a sentence not matching any article title.

See also