how to obtain two different search results from single query in django haystack with solr
By : Jason Diaz
Date : March 29 2020, 07:55 AM
it should still fix some issue Don't know about haystack, but from a Solr point of view you'll have to run one query for actors and another query for movies.
|
How to perform Geo Spatial search with django-haystack + solr
By : user2467370
Date : March 29 2020, 07:55 AM
|
Django-Haystack with Solr contains search
By : slyFox88
Date : March 29 2020, 07:55 AM
it should still fix some issue I am using haystack within a project using solr as the backend. I want to be able to perform a contains search, similar to the Django .filter(something__contains="...") , To get "contains" functionallity you can use: code :
<tokenizer class="solr.WhitespaceTokenizerFactory"/>
<filter class="solr.EdgeNGramFilterFactory" minGramSize="1" maxGramSize="100" side="back"/>
<filter class="solr.LowerCaseFilterFactory" />
"Index this!" => x, ex, dex, ndex, index, !, s!, is!, his!, this!
"nde*"
|
advanced search with solr and haystack?
By : Eric Dudas
Date : March 29 2020, 07:55 AM
I wish this help you I ended up creating my own input mostly using Raw haystack inputs. The only downfall is that this input is using Solr specific syntax, so it cannot be used with other search backends.
|
Filtering search results with django-haystack / solr produces solr syntax error
By : Dat Nguyen
Date : March 29 2020, 07:55 AM
this will help Fixed. Problem was that I was passing an empty string to the final auto_query() clause. I've migrated from a whoosh backend and that seems more tolerant of an empty search string than SOLR.
|