In the slides from the PyCon 2013 there is a mention to NEAR type queries. I've looked through the documentation and there is no mention to the NEAR keyword in the queries. I could only find something similar, this:
"whoosh library"~5
which matches if a document has 'library' within 5 words after 'whoosh'
I was wondering whether there is a way to make this kind of query:
'whoosh' NEAR:X 'python' NEAR:X 'retrieval'
where X represents the maximum number of words between the query words (i.e., 'whoosh', 'python', 'retrieval')