dear programmers!
I have a question for the people who worked with Apache Lucene.
What better way to index the array of data in Lucene?
I use
arr [i] = Field: "arr." + i + ".data"
Java Code:
Field field = new StringField(
"arr." + i + ".data",
arr[i], Field.Store.YES);
doc.add(field);
arr.
and.data
in the first place? – Chiron