mirror of
https://github.com/kiwix/kiwix-tools.git
synced 2025-09-22 11:22:38 -04:00
+ default backend is xapian
This commit is contained in:
parent
aa7603cac8
commit
8336c22f56
@ -39,7 +39,7 @@ int main(int argc, char **argv) {
|
|||||||
bool verboseFlag = false;
|
bool verboseFlag = false;
|
||||||
int option_index = 0;
|
int option_index = 0;
|
||||||
int c = 0;
|
int c = 0;
|
||||||
supportedBackend backend = CLUCENE;
|
supportedBackend backend = XAPIAN;
|
||||||
|
|
||||||
kiwix::Searcher *searcher = NULL;
|
kiwix::Searcher *searcher = NULL;
|
||||||
|
|
||||||
@ -112,8 +112,14 @@ int main(int argc, char **argv) {
|
|||||||
while (searcher->getNextResult(url, title, score)) {
|
while (searcher->getNextResult(url, title, score)) {
|
||||||
cout << title << endl;
|
cout << title << endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
delete searcher;
|
delete searcher;
|
||||||
kiwix::CluceneSearcher::terminate();
|
|
||||||
|
if (backend == CLUCENE) {
|
||||||
|
kiwix::CluceneSearcher::terminate();
|
||||||
|
} else {
|
||||||
|
// kiwix::XapianSearcher::terminate();
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
cerr << "Unable instanciate the Kiwix searcher." << endl;
|
cerr << "Unable instanciate the Kiwix searcher." << endl;
|
||||||
exit(1);
|
exit(1);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user