Reading Nutch indexes w/ Lucene.NET

2009-06-10 Thread Robert Sanford
I used Nutch to crawl an intranet site and am now trying to search using Lucene.net. When I attempt to open the index using the IndexReader I get an exception trying to access segments. I started looking a simple index that I created segments is a file but the index that was created by Nutch

Cannot seem to get Custom Query Filter working

2009-06-10 Thread Rahul Thathoo
Hi All, I am trying to work on the example for building a plugin for nutch here: http://wiki.apache.org/nutch/WritingPluginExample-0.9 Using nutch-0.9 on Windows XP. Now, i have set up things exactly as it is mentioned, and hence i actually see somethings working - like the HTML Parser Extension

Re: Reading Nutch indexes w/ Lucene.NET

2009-06-10 Thread Otis Gospodnetic
Hello, It really depends on the version of Lucene used in your Nutch instance and whether Lucene.NET version you are using is compatible at index format level. As for segments dir vs. file, this is just a case of unfortunate naming. Segments in Lucene means a completely different thing than

Re: Reading Nutch indexes w/ Lucene.NET

2009-06-10 Thread Jack Yu
it is impossible,you cant get the summary by .net http://www.pricecome.com On Thu, Jun 11, 2009 at 5:52 AM, Robert Sanford rsanf...@smbology.comwrote: I used Nutch to crawl an intranet site and am now trying to search using Lucene.net. When I attempt to open the index using the IndexReader

Re: Re-indexing with a live tomcat web app

2009-06-10 Thread Chetan Patel
Hi, Just add following sciptlet befor the end body tag in search.jsp file and try to reindex. % bean.close(); % Please can you share reindex script so i can also use the same. Regards, Chean Patel golfman wrote: I've set up nutch on Windows with Tomcat and it works well. The only

Re: Cannot seem to get Custom Query Filter working

2009-06-10 Thread Ankur Garg
have you made an entry in src/plugin/build.xml file for your plugin? On Thu, Jun 11, 2009 at 6:35 AM, Rahul Thathoo rahul.that...@gmail.comwrote: Hi All, I am trying to work on the example for building a plugin for nutch here: http://wiki.apache.org/nutch/WritingPluginExample-0.9 Using