I am working on a search query against an Elasticsearch search index. Sometimes, I want to require that a term be present. To address this scenario, I've been reading about the "+" boolean operator. However, I'm slightly confused by it.
I do not understand where it fits against the AND (&&) operator and using the phrase operator ("). For example, lets say I had a search index of animals. Imagine I wanted to find foxes. How is
brown +fox
different from brown && fox
different from "brown" && "fox"
. In my understanding, these are very similar. I understand how the last two differ. However, for the life of me, I do not understand why I would ever use the "+" operator.
Any help is appreciated.