Is something wrong in the code or is something that I missed during creating the index. I created the index for an intranet using the following command.
bin/nutch crawl urls -dir crawl.test -depth 3 >& crawl.log
Nutch does not create term vector indexes. This is a Lucene option that Nutch does not currently specify. One could patch the index-basic plugin (BasicIndexingFilter.java) to index vectors for various fields if indicated in the config file. For example, one could have a indexer.basic.vector.content property that, if true, would cause vectors to be created for the content field.
Doug
