I'm trying to do some searching with haystack
with the whoosh
backend.
In my document i have string 1234-567
and my search could look like this
SearchQuerySet().filter(content="1234567
)
Haystack does not find the object because of the hyphen between 1234
and 567
.
Anyone know how i should solve this? Should i remove the hyphen when generating the document? Also other characters like "." and "/" could cause the same problem.