We are developing application that indexes email using Lucene. To index document we use the message id field of the email as the primary key.
The message id field looks like: <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> We store this message id as Field.Keyword. Unfortunately when we are storing the message id, searching and deleting of documents (very important for us) doesn't work. *If* the message id is stored as Field.Text it will work for searching but not _deletion_. I'm 100% the code works because as soon as I substitute the message id into ordinary number such as 1, 2, 3 everything works as coded :D Any suggestions? Regards, -- Victor Hadianto -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
