Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have created an index with Lucene.NET and optimized it. There are about 30000 records, however when searching it takes about 30 seconds to retrieve any results!

My configuration looks like this:

<add key="hibernate.search.default.directory_provider" value="NHibernate.Search.Store.FSDirectoryProvider, NHibernate.Search" />
<add key="hibernate.search.default.indexBase" value="Index"/>
<add key="hibernate.search.default.exclusive_index_use" value="true" />
<add key="hibernate.search.analyzer" value="Lucene.Net.Analysis.Standard.StandardAnalyzer, Lucene.Net"/>
<add key="show_sql" value="true"/>

And my query looks like so:

IFullTextSession fullTextSession = NHibernate.Search.Search.CreateFullTextSession(session);
// Build our Lucene query
StringBuilder queryString = new StringBuilder();
// Split the search string into keywords
string[] words = searchTerms.Split(" ".ToCharArray());
foreach (string keyword in words)
{
    if (!String.IsNullOrEmpty(keyword))
    {
        queryString.AppendFormat(" BusinessName:{0}", keyword);
    }
}

QueryParser parser = new QueryParser(queryString.ToString(), new StandardAnalyzer());
Query luceneQuery = parser.Parse(queryString.ToString());
// Transform the Lucene query to an NHibernate query,
// and limit the result set types to MyEntity
IQuery query = fullTextSession.CreateFullTextQuery(luceneQuery);
return query.List();

Any pros out there got any ideas why it would run so slowly?

share|improve this question
Have you done any database profiling, with SQL Profiler or NHProf? Or cpu profiling? Or just check execution times with the Stopwatch class? Does your time go into the call to .List()? – Simon Svensson Mar 30 '11 at 19:15
Turned out it was throwing an exception at runtime that wasn't getting picked up unless I was debugging all fixed now and working! – Paul Apr 8 '11 at 2:19
What exception? When and where was it thrown? What did you do to solve it? – Simon Svensson Apr 8 '11 at 3:43

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.