Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.