Re: serialize SolrInputDocument to java.io.File and back again?

2009-12-31 Thread Noble Paul നോബിള്‍ नोब्ळ्
what serialization would you wish to use? you can use java serialization or solrj helps you serialize it as xml or javabin format (org.apache.solr.client.solrj.request.JavaBinUpdateRequestCodec) On Thu, Dec 31, 2009 at 6:55 AM, Phillip Rhodes rhodebumpl...@gmail.com wrote: I want to store a

Re: serialize SolrInputDocument to java.io.File and back again?

2009-12-31 Thread Chris Hostetter
: I want to store a SolrInputDocument to the filesystem until it can be sent : to the solr server via the solrj client. out of curiosity: why? ... what is the anticipated delay that leads you to the expectation that there will be an until it can be sent to the solr server situation? -Hoss

serialize SolrInputDocument to java.io.File and back again?

2009-12-30 Thread Phillip Rhodes
I want to store a SolrInputDocument to the filesystem until it can be sent to the solr server via the solrj client. I will be using a quartz job to periodically query a table that contains a listing of SolrInputDocuments stored as java.io.File that need to be processed. Thanks for your time.