vote up 2 vote down star
3

I've got nutch and lucene setup to crawl and index some sites and I'd like to use a .net website instead of the JSP site that comes with nutch.

Can anyone recommend some solutions?

I've seen solutions where there was an app running on the index server which the .Net site used remoting to connect to.

Speed is a consideration obviously so can this still perform well?

Edit: could NHibernate.Search work for this?

Edit: We ended up going with Solr index servers being used by our ASP.net site with the solrnet library.

flag

6 Answers

vote up 3 vote down check

Instead of using Lucene, you could use Solr to index with nutch (see here), then you can connect very easily to Solr using one of the two libraries available: SolrSharp and SolrNet.

link|flag
looks really good, will it be able to take my lucene indexes? – Scott Cowan Oct 15 '08 at 14:16
Haven't tried, but it should... trying it is the only way to be sure :) – Mauricio Scheffer Oct 15 '08 at 14:28
I'm looking at hadoop compatibility too – Scott Cowan Oct 15 '08 at 16:50
Hadoop is java-only AFAIK, and I don't know its interoperability with other platforms... – Mauricio Scheffer Oct 17 '08 at 0:49
I'm running everything on debian anyways even asp.net – Scott Cowan Oct 17 '08 at 9:17
vote up 0 vote down

Instead of using Solr, I wrote a java based indexer that runs in a cron job, and a java based web service for querying. I actually didn't index pages so much as different types of data that the .net site uses to build the pages. So there's actually 4 different indexes each with a different document structure that can all be queried in about the same way (say: users, posts, messages, photos).

By defining an XSD for the web service responses I was able to both generate classes in .net and java to store a representation of the documents. The web service basically runs the query on the right index and fills out the response xml from the hits. The .net client parses that back into objects. There's also a json interface for any client side JavaScript.

link|flag
vote up 0 vote down

SearchBlackBox Luca.Net is a commercial Apache Lucene compatible full-text search API for .NET. It allows you to provide Lucene-powered solutions for .NET.

link|flag
Good solution but its out of our budget, we're just a poor startup that can't afford 3500 for a interop library – Scott Cowan Oct 15 '08 at 16:49
link is currently broken – Mauricio Scheffer Aug 18 at 21:01
vote up 3 vote down

In case it wasn't totally clear from the other answers, Lucene.NET and Lucene (Java) use the same index format, so you should be able continue to use your existing (Java-based) mechanisms for indexing, and then use Lucene.NET inside your .NET web application to query the index.

From the Lucene.NET incubator site:

In addition to the APIs and classes port to C#, the algorithm of Java Lucene is ported to C# Lucene. This means an index created with Java Lucene is back-and-forth compatible with the C# Lucene; both at reading, writing and updating. In fact a Lucene index can be concurrently searched and updated using Java Lucene and C# Lucene processes

link|flag
how about using it with hadoop? – Scott Cowan Oct 30 '08 at 22:43
How do you want to combine Lucene with Hadoop? Index data that's already in Hadoop? Store a distributed lucene index in Hadoop? The latter would probably require a special version of lucene in order to distribute/query, but maybe someone's tried to do it, but probably in java. – Winston Fassett Oct 31 '08 at 15:02
vote up 1 vote down

I'm also working on this.

http://today.java.net/pub/a/today/2006/02/16/introduction-to-nutch-2.html

It seems you can submit your query to nutch and get the rss results back.

edit:

Got this working today in a windows form as a proof of concept. Two textboxes(searchurl and query), one for the server url and one for the query. One datagrid view.

private void Form1_Load(object sender, EventArgs e)
        {
            searchurl.Text = "http://localhost:8080/opensearch?query=";


    }

    private void search_Click(object sender, EventArgs e)
    {
        string uri;

        uri = searchurl.Text.ToString() + query.Text.ToString();
        Console.WriteLine(uri);

        XmlDocument myXMLDocument = new XmlDocument();

        myXMLDocument.Load(uri);

        DataSet ds = new DataSet();

        ds.ReadXml(new XmlNodeReader(myXMLDocument));

        SearchResultsGridView1.DataSource = ds;
        SearchResultsGridView1.DataMember = "item";

    }
link|flag
well done, We're starting to use Solr for this – Scott Cowan Feb 25 at 10:55
And it seems our division is probably going with windows search server express. – Sam Feb 25 at 21:58
vote up 0 vote down

Why not switch from java lucene to the dot net version. Sure it's an investment but it's mostly a class substitution exercise. The last thing you need is more layers that add no value other than just being glue. Less glue and more stuff is what you should aim for...

link|flag
lucene.net has no Hadoop provider which is why we're on solr now – Scott Cowan May 19 at 12:11

Your Answer

Get an OpenID
or

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