: I am in the process of upgrading from Solr 5.5 to 6.2, so I changed
NumericUtils to LegacyNumericUtils.
...
: However, LegacyNumericUtils is the deprecated form of NumericUtils. It
: says that I should use the PointValues class instead. However, unless I
: am missing something, it does not seem to support converting BytesRef to
: long/int/etc.
correct -- that's a general lucene level deprecation warning encouraging
existing applicatons using NumericUtils to change to use PointsField
at index time -- Solr does not yet support points field, so switching your
code to use LegacyNumericUtils is appropriate at this point.
-Hoss
http://www.lucidworks.com/