Hello, I have a question I created a custom search and i have the code
org.apache.hadoop.conf.Configuration conf = NutchConfiguration.create(); NutchBean bean = new NutchBean(conf); Query query = Query.parse(search_term,lang,conf); Hits hits = bean.search(query, NUM_HITS); when i search the word animals for e.g it fetches the results. But when i search with the word anim it does not fetch the results. Is there a way to create a search term with like clause or does Nutch searches only with the exact word? Thank you a lot Antonis

