Baloo/XapianAlternatives: Difference between revisions
Appearance
< Baloo
Created page with "Just documenting what all we could use if we decide to move away from Xapian. == Full Text Indexing Solutions == * Lucene or Lucene++ - It's a fully features full text indexi..." |
|||
Line 2: | Line 2: | ||
== Full Text Indexing Solutions == | == Full Text Indexing Solutions == | ||
=== Clucene === | |||
The project seems kind of dead. | |||
=== Lucene++ === | |||
== Key/Value Stores == | == Key/Value Stores == |
Revision as of 15:36, 7 December 2014
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++