Full text search with DB4O - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T01:34:34Z http://stackoverflow.com/feeds/question/446933 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/446933/full-text-search-with-db4o 0 Full text search with DB4O boris callens 2009-01-15T14:29:22Z 2009-02-04T20:34:20Z <p>In my DB4O database I have an amount of Book objects</p> <pre><code>Book +string: Title ... </code></pre> <p>When entering a title (string) in my form I would like to suggest existing titles. Currently I use a simple </p> <pre><code>book.Title.Contains(titlePart) </code></pre> <p>But it would be a nice adition if I could suggest books with titles that match the input title even if it had several, non sequential matching words and give the matches in an order of relevance. In short: have full text search on them.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/446933/full-text-search-with-db4o/513174#513174 1 Answer by Kasper Rönning for Full text search with DB4O Kasper Rönning 2009-02-04T20:34:20Z 2009-02-04T20:34:20Z <p>You have to hook Lucene or Lucene.NET to index your text fields. Full text searches will be very fast using Lucene.</p>