Hy Guys,

Is there some advantage in speed or index size to use this:

IntDocValuesField fld = new IntDocValuesField("fldName", 1);
StoredField fld = new StoredField("fldName", 1);

instead of this:

IntField fld = new IntField("fld", 1, Field.Store.YES);

Searching, sorting and retrieving data from just one object (IntField) is easier than dealing with two objects (IntDocValuesField and StoredFiel) for the same field. So as Lucene includes the also latter alternative, there might be some advantages using it?

Cheers,
Ivan

---------------------------------------------------------------------
To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org
For additional commands, e-mail: java-user-h...@lucene.apache.org

Reply via email to