12345678910111213141516171819202122232425 |
- /** \mainpage Search Engine
- *
- * This module's purpose is to offer general indexing and searching services.
- * There are two basic methods for indexing: ACTs and B-trees. ACT is suitable
- * for variable-size keys, UTF-8 strings in particular. BTree is suited for
- * fixed-size keys, like integers, dates etc.
- *
- * @section html_links See also:
- * @htmlonly
- * <ul>
- * <li><a href="../index.html">index.html</a> for API overview and examples</li>
- *
- * <li><a href="../file_format.html">file_format.html</a> for detailed description of how the data are stored on disk</li>
- * </ul>
- * @endhtmlonly
- * @manonly
- * See HTML documentation for more details.
- * @endmanonly
- * @latexonly
- * See HTML documentation for more details.
- * @endlatexonly
- * @xmlonly
- * See HTML documentation for more details.
- * @endxmlonly
- */
|