d e wrote:
We are just getting started with Nutch and could use some pointers to
how to
interface our Java code to the search capabilities.
Where can we get some examples? Where is the best documentation?
Run through the tutorials on the nutch homepage and the wiki. This
should give you a good introduction on how to setup and run Nutch.
How I we set up an environment (classpath, etc) and get an instance of an
object from which we can issue queries against our crawl database using the
lucene query language ?
The best object to take a look at is the NutchBean class. You will need
some experience with various query types.
How do we specify the directory where our crawl results are located to the
query engine?
This is specified by the searcher.dir configuration variable.
Dennis Kubes
Is the API for Lucene the one I should use to retreve results? How are the
Nutch and Lucene API's related?
THANKS!!