申し訳ありませんが、私は Lucene の初心者です。
複数のフィールドを持つドキュメントをインデックスに追加しました
Document doc = new Document();
doc.add(new TextField("productName", productName, Field.Store.YES));
doc.add(new FloatField("price", Float.parseFloat(price), Field.Store.YES));
//+additional fields
商品を検索し、価格帯で絞り込みたい。これらの結果にフィルターを適用する方法を誰か教えてもらえますか?
String[] queryStrings = {searchTerm};
String[] fields = {"itemName"}; //might query multiple fields in future
try {
Query q = MultiFieldQueryParser.parse(luceneVersion, queryStrings, fields, analyzer); // assuming I might want to search additional fields like description in the future
IndexReader reader = DirectoryReader.open(indexDirectory);
IndexSearcher searcher = new IndexSearcher(reader);
TopDocs td = searcher.search(q, to);
// Not sure how to filter here, I eventually will want to save these results for pagination
} catch (Exception e){
e.printStackTrace();
}