Re: Serialized Java Objects

2005-08-25 Thread David Medinets
I believe that Java 1.4 and 1.5 can serialize and deserialize objects directly to XML. Therefore you can store the XML directly into Lucene as an unindexed field. You could also use one of the XML analyzers to parse and index the fields. On 8/25/05, Kevin L. Cobb <[EMAIL PROTECTED]> wrote: > I jus

Re: Serialized Java Objects

2005-08-25 Thread jian chen
Hi, I don't think by default it does so. But, you can certainly serialize the java object and use base 64 to encode it into a text string, then, you can store it as a field. Cheers, Jian On 8/25/05, Kevin L. Cobb <[EMAIL PROTECTED]> wrote: > I just had a thought this morning. Does Lucene have t