# LucenePlusPlus **Repository Path**: rim99/LucenePlusPlus ## Basic Information - **Project Name**: LucenePlusPlus - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-11-12 - **Last Updated**: 2024-06-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Lucene++ ========== Welcome to lucene++ version **3.0.8**. Lucene++ is a C++ port of the popular Java [Lucene](http://lucene.apache.org/) library, a high-performance, full-featured text search engine. Lucene++ Components ---------------- - liblucene++ library - liblucene++-contrib library - lucene++-tester (unit tester) - deletefiles (demo) - indexfiles (demo) - searchfiles (demo) For information on building the Lucene++ suite, please read doc/BUILDING.md Useful Resources ---------------- Official [Java Lucene](http://lucene.apache.org/java/docs/index.html) - useful links and documentation relevant to Lucene and lucene++. [Lucene in Action](https://www.amazon.com/dp/1932394281/) by Otis Gospodnetic and Erik Hatcher. To run unit test suite ---------------------- lucene_tester is built using the [Google Testing Framework](https://code.google.com/p/googletest/). you can run the test suite on unix with the following command run from the repository root:: ``` $ build/src/test/lucene++-tester ``` the test suite can also be run from the repository root on NT systems, but the required DLL files must manually be copied into the test binary path before executing, otherwise you will recieve errors telling you that required libraries cannot be found. ``` $ build/src/test/lucene++-tester ``` Command options can be discovered by supplying `--help`. To run the demos ---------------- Start by indexing a directory of files - open a command prompt and run ``` ./indexfiles ``` Once the indexer has finished, you can query the index using searchfiles ``` ./searchfiles -index ``` This uses an interactive command for you to enter queries, type a query to search the index press enter and you'll see the results. Acknowledgements ---------------- - Ben van Klinken and contributors to the CLucene project for inspiring this project. - md5 Copyright (C) 1999, 2000, 2002 Aladdin Enterprises - `Unicode character properties (guniprop)[http://library.gnome.org/devel/glib/] Copyright (C) 1999 Tom Tromey, Copyright (C) 2000 Red Hat, Inc. - `Cotire (compile time reducer)[https://github.com/sakra/cotire] by Sascha Kratky.