Re: one Field in many documents

2007-03-08 Thread Michael D. Curtin
<[EMAIL PROTECTED]> wrote on 08/03/2007 12:56:33: I have to index many documents with the same fields (only one or two fields are different). Can I add a field (Field instance) to many documents? It seams to work but I'm not sure if this is the right way... What does "many" mean in this context?

Re: one Field in many documents

2007-03-08 Thread Doron Cohen
In general I would say this is not safe, because it seems to assume too much about the implementation - and while it might in most cases currently work, the implementation could change and the program assuming this would stop working. It would most probably not work correctly right from the start f

one Field in many documents

2007-03-08 Thread new333333
Hi, I have to index many documents with the same fields (only one or two fields are different). Can I add a field (Field instance) to many documents? It seams to work but I'm not sure if this is the right way... Thank you - To