I have a question about a field that is indexed, but not stored (as shown)
@Field(name = "empName", index = Index.UN_TOKENIZED, store = org.hibernate.search.annotations.Store.NO)
When I browse through the Lucene documents using Luke, I cannot see this field since it is not stored in the document. But I can search using it, since it is indexed. So that means the untokenized value is somewhere in the index. Where is this indexing information kept if it is not part of the Lucene document?
Thanks,
Seema
|