I would like for my user to be able to enter into the search box something like "word1 word2" and receive only documents with word1 directly before word2. Even better would be to take advantage of Solr's other capabilities, like:
- title:"word1 word2"
- text:(word1 OR word2)
- "word1 word2"~5
My current SQS is set up like this: searchqueryset = SearchQuerySet().filter(content=AltParser('edismax', Raw(query), pf="title^1.5 text^1"))
And I think that, despite using Raw, things are still being escaped (based on the results I'm getting).
Let me know if any more information would be helpful.
Thanks! Jake