How to not-analyze in ElasticSearch?
I've got a field in an ElasticSearch field which I do not want to have analyzed, i. e. it should be stored and compared verbatim. The values will contain letters, numbers, whitespace, dashes, slashes and maybe other characters. If I do not give an analyzer in my mapping for this field, the default still uses a tokenizer which hacks my verbatim string into chunks of words. I don't want that. Is there a super simple analyzer which, basically, does not analyze? Or is there a different way of denoting that this field shall not be analyzed? I only create the index, I don't do anything else. I can