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?