Re: Few questions on updatable DocValues

2014-03-15 Thread Shai Erera
Double fields can be implemented today over NumericDVField and therefore already support updates. String can be implemented on Sorted/SortedSetDVField, but not updates for them yet. I hope that once I'm done w/ LUCENE-5513, adding update support for Sorted/SortedSet will be even easier. Shai On

Re: Few questions on updatable DocValues

2014-03-14 Thread Gopal Patwa
Hi Shai, Thanks for implementing this feature. I was wondering if we could have another these 2 types for updatable docvalues 1) Double and 2) String this could cover lot;s of use case where you have much higher update rate than normal document update. On Fri, Mar 14, 2014 at 4:20 AM, Shai Ere

Re: Few questions on updatable DocValues

2014-03-14 Thread Shai Erera
Hi 1. Is it possible to provide updateNumericDocValue(Term term, > Map), incase I wish to update multiple-fields and it's > doc-values? > For now you can call updateNDV multiple times, each time w/ a new field. Under the covers, we currently process each update separately anyway. I think in order

Few questions on updatable DocValues

2014-03-14 Thread Ravikumar Govindarajan
Hi, I have few questions related to updatable DocValues API... It would be great if I can get help. 1. Is it possible to provide updateNumericDocValue(Term term, Map), incase I wish to update multiple-fields and it's doc-values? 2. Instead of a "Term" based update, is it possible to extend it to