Greetings.
I am using Lucene 7.6.
To do indexing i am using StandardAnalyzer()
and to index a numeric field this is what I did:
doc.add(new IntPoint("niveauexp", 4)); doc.add(new StoredField("niveauexp",
4)); Problem: when I tried to search "niveauexp" using 4 as search parameter, i recieve results. Please help.
