在 lucene 中为布尔值编制索引的最佳选择是什么?
在lucene(不需要存储)中索引布尔值(真/假)我想获得更多的磁盘空间使用率和更高的搜索性能
doc.add(new Field("boolean","true",Field.Store.NO,Field.Index.NOT_ANALYZED_NO_NORMS));
//or
doc.add(new Field("boolean","1",Field.Store.NO,Field.Index.NOT_ANALYZED_NO_NORMS));
//or
doc.add(new NumericField("boolean",Integer.MAX_VALUE,Field.Store.NO,true).setIntValue(1));
我应该选择哪一个?还是其他更好的方法?
多谢