Guest User

Untitled

a guest
Aug 3rd, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. // Index file contents
  2. Field contentField = new Field(
  3. FieldContent,
  4. message.content,
  5. Field.Store.YES,
  6. Field.Index.ANALYZED,
  7. Field.TermVector.YES);
  8.  
  9. // The id of the document
  10. Field messageIdField = new Field(
  11. FieldMessageId,
  12. message.serverMessageId,
  13. Field.Store.YES,
  14. Field.Index.NOT_ANALYZED);
  15.  
  16. // The dateTime that the document was created
  17. Field timeStampField = new Field(
  18. FieldTimeStamp,
  19. message.creationDate.ToString(),
  20. Field.Store.YES,
  21. Field.Index.NOT_ANALYZED);
Advertisement
Add Comment
Please, Sign In to add comment