Re: How to achieve wildcard search using haystack in django

2018-04-11 Thread Gabriel - Iulian Dumbrava
Please note that there are a few considerations when using wildcards. First, there are some issues with haystack and woosh, as the one here . Wildcards work by default with autosearch, otherwise you'll have to compile the

How to achieve wildcard search using haystack in django

2018-04-10 Thread shawnmhy
I am currently working on haystack search in django. I met 2 problems, first, when I use 'Whoosh' engine, the search can only return the result that match exactly the same with my search key, for example if I type 'ABC', it cannot match 'ABCD' Secondly, how can I achieve wildcard search