up vote 0 down vote favorite
share [g+] share [fb]

Say,search for results whose Field is 'A' or 'B'?

it seems the default is AND.

link|improve this question

42% accept rate
feedback

3 Answers

Never worked with Nutch actively, but since it's based on Lucene, shouldn't Lucene's rules apply? That is to say, the Query Parser Syntax should be applicable. See if this helps.

link|improve this answer
seems not,I've tried that days ago,or you can try it out here: file.jobirn.com:8080/ROOT-resume – Shore Jun 2 '09 at 1:43
probably you're right. do have a look at: blog.tcg.com/tcg/2009/03/…. seems there's a patch for it. – pugmarx Jun 2 '09 at 7:14
Thanks,let me try it. BTW,are you familiar with Query.parse(queryString, queryLang, nutchConf)? Do you know which fields are searched by this API call? – Shore Jun 2 '09 at 16:28
feedback

i was recently started working with nutch .you need to modify the query.java in nutch to get OR query exicuted. Add the code in Query.java

public void addShouldTerm(String term, String field) { clauses.add(new Clause(new Term(term), field, false, false, this.conf)); }

public void addShouldTerm(String term) { addShouldTerm(term, Clause.DEFAULT_FIELD); }

and form your query like

Query query= new Query(conf); query.addNotRequiredTerm("A"); query.addNotRequiredTerm("B"); you will get the results for A Or B.

Please correct me if any other way of doing or better way.

link|improve this answer
feedback

Never used nutch for querying (just for indexing), but the schmea.xml should conatin a defaultOperator which can be set to AND or OR.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.