I have gone through a small article for how to index data using Lucene.Net but few code meaning was not clear to me those are
Document doc = new Document();
doc.Add(new Field("ID", oData.ID.ToString() + "_" + oData.Type, Field.Store.YES, Field.Index.UN_TOKENIZED));
doc.Add(new Field("Title", oData.Title, Field.Store.YES, Field.Index.TOKENIZED));
doc.Add(new Field("Description", oData.Description, Field.Store.YES, Field.Index.TOKENIZED));
doc.Add(new Field("Url", oData.Url, Field.Store.YES, Field.Index.TOKENIZED));
writer.AddDocument(doc);
What is the meaning of this line doc.Add(new Field("ID", oData.ID.ToString() + "_" + oData.Type, Field.Store.YES, Field.Index.UN_TOKENIZED));
What is the meaning of Field.Index.UN_TOKENIZED and Field.Index.TOKENIZED
if possible please discuss about the importance of these words in details UN_TOKENIZED and Field.Index.TOKENIZED
.