Full-Text Searching

#1

Hi,

I an wondering whether there are any suggestions on design patters for doing full-text searching within ObjectDB?  Obviously, a solution would be to use Lucene for those types of searches with pointers back into ObjectDB.  Is there a way to extend ObjectDB to do that within the engine?

Thanks

#2

The ability of ObjectDB to index collections, including collections of strings, can be very useful in text indexing and search. By splitting document text into words and keeping these words in a List<String>persistent field, documents that contain specific words can be retrieved easily and efficiently.

This ability should be extended in future versions of ObjectDB to complete full text support, as provided by separate tools such as Apache Luncene.

If you are interested in this feature request please subscribe to this feature request.

ObjectDB Support

Reply