Hi, I have index which has the field NOT stored and would like update some field which is indexed and stored. Updating index requires all fields same as original (before updating) with updated field. Is there any way to post "JUST UPDATED FIELD ONLY"? Here is an example. field indexed stored ----------------------------- item_id yes yes searchable yes yes price yes yes title yes yes description yes no
The way I know to update the "Searchable" field from Y to N for item_it "12345". <add> <doc> <field value=item_id>12345</field> <field value=searchable>Y</field> <field value="price">6699</field> <field value="title">title sample</field> <field value="description">This is the detail description of item ....</field> </doc> </add> and I am looking the way to update the specific field by <add> <doc> <field value=item_id>12345</field> <field value=searchable>Y</field> </doc> </add> --> it may keep the unchanged field. Thanks, Jae Joo