Re: Serialization of Lucene Document objects

2011-02-22 Thread Erik Fäßler
Hi Simon, thanks for your answer. My comments below: so you mean you would want to do that analysis on the client side and only shoot the already tokenized values to the server? What exactly is too slow? Can you provide more info what the problem is? After all I think you should ask on the sol

Re: Serialization of Lucene Document objects

2011-02-22 Thread Simon Willnauer
On Tue, Feb 22, 2011 at 2:58 PM, Erik Fäßler wrote: >  Hi there, > > I'd like to serialize some Lucene Documents I've built before. My goal is to > send the documents over a http connection to a Solr server which then should > add them to its index. ok so why do you build lucene documents if you

Serialization of Lucene Document objects

2011-02-22 Thread Erik Fäßler
Hi there, I'd like to serialize some Lucene Documents I've built before. My goal is to send the documents over a http connection to a Solr server which then should add them to its index. I thought this would work as the Document class implements Serializable as do the Fields. Unfortunately,