Baloo/XapianAlternatives

From KDE Community Wiki
Revision as of 15:36, 7 December 2014 by Vhanda (talk | contribs) (→‎Full Text Indexing Solutions)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Just documenting what all we could use if we decide to move away from Xapian.

Full Text Indexing Solutions

Clucene

The project seems kind of dead.

Lucene++

Key/Value Stores

Another option is to build our own full text indexing solution. We don't want to do all the hard work of the lower level file access, concurrency, paging, etc. It makes more sense to build it on top of some existing btree solution.

Berkley DB

License: GPL
Language: C

Tokyo Cabinet

License: LGPL
Langauge: C

Kyoto Cabinet

License: GPL
Langauge: C++

Offers both persistent hash tables and btrees.

LevelDb

License: BSD
Langauge: C++