I would like to construct an elasticsearch query (or filter) that detects whether two words with wildcards are within a certain distance of each other. Is this possible with elasticsearch?
For example, I would like a query that detects whether pret* and ug* are within five words of each other. Such a query should match "She is pretty and he is ugly."
I think I would need to use the span_near query, but span_near only accepts a series of span_term's as arguments and span_term doesn't appear to allow wildcards.
Is it possible to do this with elasticsearch? If not, is this possible with Lucene directly?