vote up 0 vote down star

Given that Lucene is a robust document based search engine could it be used as an Object Database for simple applications (E.G., CMS style applications) and if so what do you see the benefits and limitations?

I understand the role of the RDBMS (and use them on a daily basis) but watned to explore other technologies/ideas.

For example say my domain entities are like:

[Serializable]
public class Employee
{
    public string FirstName {get;set;}
    public string Surname {get;set;}
}

Could I use reflection and store the property values of the Employee object as fields in a Lucene document, plus store a binary serialized version of the Employee object into another field in the same Lucene document?

flag

1 Answer

vote up 1 vote down check

No. Trying to use Lucene as an effective OODB (Object Oriented Database) is going to be like trying to fit a square peg into a round hole. They're really two completely different beasts.

Lucene is good at building a text index of a set of documents...not storing objects (in a programming sense). Maybe you mis-understand what an Object Oriented Database is. You can check out the definition at Wikipedia:

Object Databases

Object Oriented Databases have their place. If you truly have an application that would benefit from an OODB, I would suggest checking out something like InterSystems Caché

link|flag
Hi Justin, sorry by my original question lacked some context and hopefully the question is better explained. – Kane Jun 5 at 3:38
Even with the added context, I think I'd still stick with my original answer. Since Lucene is written to hold and query indexed documents...trying to store objects in documents for Lucene to reliably search is going to be difficult and inefficient. – Justin Niessner Jun 5 at 12:55
Thanks Justin. Cheers – Kane Jun 5 at 13:25

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.