I want to treat the field of one of the indexed items as one big string even though it might have whitespace. I know how to do this by setting a non-custom field to be 'not-analyzed', but what tokenizer can you use via a custom analyzer?
The only tokenizer items I see on elasticsearch.org are:
- Edge
- NGram
- Keyword
- Letter
- Lowercase
- NGram
- Standard
- Whitespace
- Pattern
- UAX URL Email
- Path
- Hierarchy
None of these do what I want.

