标签:
这前使用的lucene4.7版本,程序正常,现在升级到5.1时,索引文件正常,但在搜索的时候,出现:IllegalStateException: unexpected docvalues type NONE" on fields Use UninvertingReader or index with docvalues.
后才知道,是因为Sort排序对索引字段有了新的要求,即使用DocValuesField的字段才能进行排序。
查询doc文档,最终解决方法如下:
原来的代码:dfDocument.add(new LongField("id", Long.parseLong(id),Field.Store.YES));
现在的代码:dfDocument.add(new NumericDocValuesField("id",Long.parseLong(id)));
替换后一切OK,如果你想在查询中获取ID的字段值,那就多加一条排序的字段,那保留原代码,然后加一条:
dfDocument.add(new NumericDocValuesField("sortid",Long.parseLong(id)));
查询的时候,使用new Sort(new SortField("sortid", SortField.Type.LONG, true));作为排序。
lucene升级至5.1版本出现 :IllegalStateException: IllegalStateException: unexpected docvalues type NONE"
标签:
原文地址:http://blog.csdn.net/cctcc/article/details/45672247