I get the following error message java.lang.UnsupportedOperationException
with Lucene search method: topDocs = searcher.search(booleanQuery, null, 100);
when I'm trying to use the following implementation of MB25 Okapi Search (http://nlp.uned.es/~jperezi/Lucene-BM25)
booleanQuery.add(new BM25BooleanQuery(current_tags[i],
"tags",
new StandardAnalyzer()),
BooleanClause.Occur.SHOULD);
searcher = new IndexSearcher(INDEX_DIR);
topDocs = searcher.search(booleanQuery, null, 100);
I'm using an old version of Lucene: Lucene 2.4.1 (I cannot upgrade!)
Can you help me to understand why I get such error ?
thanks
java.lang.UnsupportedOperationException at org.apache.lucene.search.Query.createWeight(Query.java:88) at org.apache.lucene.search.BooleanQuery$BooleanWeight.(BooleanQuery.java:185) at org.apache.lucene.search.BooleanQuery.createWeight(BooleanQuery.java:360) at org.apache.lucene.search.Query.weight(Query.java:95) at org.apache.lucene.search.Searcher.createWeight(Searcher.java:185) at org.apache.lucene.search.Searcher.search(Searcher.java:136) at NVoting.(NVoting.java:159) at Main.main(Main.java:8)
Update
BooleanQuery.java
weights.add(c.getQuery().createWeight(searcher));
Query.java
Weight weight = query.createWeight(searcher);