On 9/10/2019 7:15 AM, Doss wrote:
4 to 5 million documents.
For an NTR index, we need a field to be updated very frequently and filter
results based on it. Will In-Place updates help us?
<field name="status" type="pint" indexed="false" stored="false"
docValues="true" />
Although you CAN search on docValues-only fields, the performance is
terrible. So the answer I have for you is "maybe, but you won't like
it." For good filtering performance, you need the field to be indexed.
Which means you can't do in-place updates.
Thanks,
Shawn