* Added failing test to demonstrate issue with large raw_ fields. * Switched to StoredField to avoid indexing error for immense fields. StringField indexes all the content as a single token and has a max length of 32766. StoredField does not analyze/index the field but enables retrieval with luceneSearcher.Doc(docId) Closes GH #11487