Re: dynamic pruning (WAND) supported ??

2015-12-03 Thread Ahmet Arslan
Hi Zong, I don't think Lucene has this. People usually needs all candidate documents to be scored. They sometimes sort by price, popularity, etc, sometimes combined with document relevancy scores. However, with time limited collector, closest thing could be: https://issues.apache.org/jira/br

Re: dynamic pruning (WAND) supported ??

2015-12-03 Thread Adrien Grand
Maybe BooleanQuery's minShouldMatch: https://lucene.apache.org/core/5_3_0/core/org/apache/lucene/search/BooleanQuery.Builder.html#setMinimumNumberShouldMatch%28int%29 Le jeu. 3 déc. 2015 à 06:53, search engine a écrit : > Hi, > > Does Lucene have any dynamic pruning mechanism in place now to ma

lucene classpath

2015-12-03 Thread jerrittpace
I am trying to set the classpath for the lucene jars I have tried many different variations of the following: java -classpath C:\Users\User5\Documents\lucene\lucene-5.3.1\demo\lucene-demo-5.3.1.jar;C:\Users\User5\Documents\lucene\lucene-5.3.1\core\lucene-core-5.3.1.jar org.apache.lucene.demo.Inde

Re: lucene classpath

2015-12-03 Thread Ahmet Arslan
Hi, May be windows path separator messing things. Can you try to copy jars to current working directory and re-try java -classpath lucene-demo-5.3.1.jar;lucene-core-5.3.1.jar Ahmet On Thursday, December 3, 2015 11:57 PM, jerrittpace wrote: I am trying to set the classpath for the lucene jars

RE: lucene classpath

2015-12-03 Thread Uwe Schindler
Hi, you are using a very old version of the demo tutorial (for version 2.9.4) with newer versions of the class files. The Demo Module in 5.3.1 was restructured, so you need many more JAR files on classpath. See the documentation of 5.3.1: http://lucene.apache.org/core/5_3_1/demo/index.html In a