According to link , the parent child docs are stored as
child1,child2,parent
Does this mean if I have references to child1 from parent1 and parent2, it will be duplicated twice or will it refer to the same child1 document?
Will it be
child1(COPY1),child2,parent1 /// child1(COPY2),parent2
OR
child1(COPY1),parent1 ///// child1(COPY1),parent2