Re: index: how to store binary data or objects ?

2004-02-10 Thread Andrzej Bialecki
Dror Matalon wrote: On Tue, Feb 10, 2004 at 03:59:50AM +0100, [EMAIL PROTECTED] wrote: Hi Lucent Users! Searching the documentation, API and this mailinglist results in: no way to store objects or binary data in an UnIndexed org.apache.lucene.document.Field to attach it to the index directly Is

Re: index: how to store binary data or objects ?

2004-02-10 Thread Markus Brosch
1. Store the binary data in files and store the path in Lucene. There's scallability issues here when you handle more than a few hundred thousand objects. 2. Store the binary data in a database and store a unique id in Lucene. This will scale better but binary data fetching from the db might

Re: index: how to store binary data or objects ?

2004-02-10 Thread petite_abeille
On Feb 10, 2004, at 14:53, Markus Brosch wrote: My application will deal with small data sets. The problem is, that I want to index the content (String) of some objects. I want to refer to that object once I found this by a keyword or whatever. So, using a simple map or tree? Something along

index: how to store binary data or objects ?

2004-02-09 Thread brosch
Hi Lucent Users! Searching the documentation, API and this mailinglist results in: no way to store objects or binary data in an UnIndexed org.apache.lucene.document.Field to attach it to the index directly Is there a way to do this? What would you suggest to do? Thank you very much for any

Re: index: how to store binary data or objects ?

2004-02-09 Thread Dror Matalon
On Tue, Feb 10, 2004 at 03:59:50AM +0100, [EMAIL PROTECTED] wrote: Hi Lucent Users! Searching the documentation, API and this mailinglist results in: no way to store objects or binary data in an UnIndexed org.apache.lucene.document.Field to attach it to the index directly Is there a way