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

I'm working on optimizing my Lucene index, and I'm a little unsure as to what the Field.Store is all about. Wondering if I could get a decent description.

Example:

doc.Add(New Field("user", e.Username, Field.Store.YES, Field.Index.ANALYZED))

If I've got a "user" stored in my user field, and I want to be able to search that user via user:joe do I need to Store that field Field.Store.YES? I'm just not quite sure how the store works. If it means that it's not in the index, then what would be the point of putting the "user" field in the index at all?

share|improve this question
no, if you don't need to retrieve the actual username, but just wan't to know if its a hit or not, you don't have to store the value. – Pauli Østerø Jan 3 '11 at 21:31
so when is an example of needing to store the value? – Chase Florell Jan 3 '11 at 21:31

1 Answer

up vote 1 down vote accepted

Field.Store is explained beautifully in this SO thread Lucene indexing: Store and indexing modes explained

Basically the search hits will include the data for all the fields with Field.Store.YES set, you don't need this if you have another storage mechanism like a DB. If you do rely on Lucene for this exclusively, it makes sens to store a few common fields, at least one that allows you to get to the original document on disk.

share|improve this answer
yeah... normalli i only have store set to yes for some identification field so i can retrieve the original object from database when there is a search hit. – Pauli Østerø Jan 3 '11 at 21:39
nice link. I didn't find it in my searching. thanks. – Chase Florell Jan 3 '11 at 21:51
so if I punch in all my fields as Store.NO and Index.ANALYZED - I still need to search on a specific Field. But if that specific field doesn't contain my keywords (even though the keywords are contained in a different field), then the Analyzing is moot. Is that correct? IE: I search for joe who's in the users field but my parser is pointing to the details field, then joe will never be found – Chase Florell Jan 3 '11 at 22:15
I think i figured that bit out, I'll have to use a boolean query – Chase Florell Jan 3 '11 at 22:24
yep as you said, terms are field specific, you can search over multiple terms in a Boolean query, I used one in my answer here: stackoverflow.com/questions/4565303/… – BrokenGlass Jan 3 '11 at 22:28
show 1 more comment

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.