Re: What's the best way to specify nested child documents using UpdateRequest

2014-06-18 Thread Mikhail Khludnev
On Thu, Jun 19, 2014 at 3:32 AM, Vinay B, wrote: > I'm hoping that > despite this, that the child can be modified updated later on, without > affecting the main document. > Nope. You have to rewrite whole block. -- Sincerely yours Mikhail Khludnev Principal Engineer, Grid Dynamics

What's the best way to specify nested child documents using UpdateRequest

2014-06-18 Thread Vinay B,
SolrJ allows a direct linkage between parent and child document using SolrInputDocument.addChildDocument(...) . We, however, construct our request via a raw UpdateRequest() as that gives us a bit more flexibility. I'm investigating how best to add nested docs using this approach. >From my underst