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

Currently I do like this:

IndexSearcher searcher = new IndexSearcher(lucenePath);
Hits hits = searcher.Search(query);
Document doc;
List<string> companyNames = new List<string>();

for (int i = 0; i < hits.Length(); i++)
{
    doc = hits.Doc(i);
    companyNames.Add(doc.Get("companyName"));
}
searcher.Close();

companyNames = companyNames.Distinct<string>().Skip(offSet ?? 0).ToList();
return companyNames.Take(count??companyNames.Count()).ToList();

As you can see, I first collect ALL the fields (several thousands) and then distinct them, possibly skip some and take some out.

I feel like there should be a better way to do this.

share|improve this question

3 Answers

up vote 0 down vote accepted

I'm not sure there is, honestly, as Lucene doesn't provide 'distinct' functionality. I believe with SOLR you can use a facet search to achieve this, but if you want this in Lucene, you'd have to write some sort of facet functionality yourself. So as long as you don't run into any performance issues, you should be ok this way.

share|improve this answer
Ok, thanks for letting me know. – Boris Callens Mar 6 '09 at 10:23

Tying this question to an earlier question of yours (re: "Too many clauses"), I think you should definitely be looking at term enumeration from the index reader. Cache the results (I used a sorted dictionary keyed on the field name, with a list of terms as the data, to a max of 100 terms per field) until the index reader becomes invalid and away you go.

Or perhaps I should say, that when faced with a similar problem to yours, that's what I did.

Hope this helps,

share|improve this answer
Could you elaborate on what you mean with "Term Enumeration"? Do you mean enumerating all my documents and getting those fields so I can use C#'s StartsWith()? – Boris Callens Mar 6 '09 at 12:42
+1 for seeing the question behind the question – Boris Callens Mar 6 '09 at 12:43
Have a look at the Terms member function of the IndexReader class. BTW, I found out a good deal about this kind of thing by having a look at the Luke source code. Very interesting! – Adrian Conlon Mar 6 '09 at 17:24
I'm not a big fan of Luke actually. I don't know why, but it takes ages for each query to parse. Way slower then my own queries. – Boris Callens Mar 19 '09 at 15:10

I suggest you to find a logic to skip this kind of iteration but if there is no solution in your context then you can get a performance gain with the following code
1) at Index time it is best to put the field that you want to iterate, in first field

Document doc = new Document();
Field companyField = new Field(...);
doc.Add(companyField);
...

2) then you need to define a FieldSelector like this

class CompanyNameFieldSelector : FieldSelector
{
    public FieldSelectorResult Accept(string fieldName)
    {
        return (fieldName == "companyName" ? FieldSelectorResult.LOAD_AND_BREAK : FieldSelectorResult.NO_LOAD);
    }
}

3) Then when you want to iterate and pick this field you should do something like this

FieldSelector companySelector = new CompanyNameFieldSelector();
// when you iterate through your index
doc = hits.Doc(i);
doc.Get("companyName", companySelector);

The performance of above code is much better than the code you provided cause it skip reading unnecessary document fields, and save time.

share|improve this answer

Your Answer

 
discard

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

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