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

Heres part of my code. Instead of searching the text in desc i'd like to search in everything (desc, title, example, etc). How do i do this? do i make another field call all and copy each field into it? can i do something like "", null or "*" to denote search them all? (I tried each and got no results).

How do i search all fields with my text?

public static List<Pair<long, float>> Search(string text)
{
    var searcher = new IndexSearcher(directory, true);
    var parser = new QueryParser(Lucene.Net.Util.Version.LUCENE_29, "desc", analyzer);
    var query = parser.Parse(text);
    var hits = searcher.Search(query);
    // etc
}
share|improve this question

1 Answer

up vote 2 down vote accepted

It would be good if lucene implicitly supported the notion of "all". You are left with indexing 1 additional filed (name it as "all") whose contents will be a concatenation of desc, title, example etc but do not store it, just index.

share|improve this answer
hmm, what is the difference between yes, no (and i can guess compress). I dont understand why that option exist – acidzombie24 Dec 23 '10 at 22:18
Yes means the data is also stored by lucene and it increases the size of the index. Increase in index size means more time while merging/optimizing operations. But if you want the highlighting functionality then I believe you have to store it. Accept the answer if I've answered your question – Pangea Dec 24 '10 at 1:21
I tried it out and the search works. So storing it helps with highlighting? i never heard of highlighting. So i really dont need to store any of these fields? i'll change it and see what happens. BTW almost all this data is also in my mysql db. I use lucence strictly for searching – acidzombie24 Dec 24 '10 at 6:41
If you have all the data in DB then just index the data without storing anything in lucene except the primary/natural key. This way you perform search against the lucene index and while displaying you can retrieve the details from mysql db. The link between the lucene index and the mysql db is the primary/natural key – Pangea Dec 24 '10 at 6:54

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.