Full text search with DB4O - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T01:34:34Zhttp://stackoverflow.com/feeds/question/446933http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/446933/full-text-search-with-db4o0Full text search with DB4Oboris callens2009-01-15T14:29:22Z2009-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#5131741Answer by Kasper Rönning for Full text search with DB4OKasper Rönning2009-02-04T20:34:20Z2009-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>