A haystack is a generic term for a set of results to search. For Django Haystack-related questions, use [django-haystack] instead.

learn more… | top users | synonyms

2
votes
3answers
588 views

Overcoming needle haystack confusion in PHP

What is the most practical way of overcoming needle haystack confusion in PHP? Here $needle is the first argument bool in_array ( mixed $needle , array $haystack [, bool $strict = FALSE ] ) Here ...
1
vote
3answers
49 views

Better way to write multiple strpos calls

I've made a simple script that finds all of the outgoing <a> tags of a website, and displays them. To do this first I scrape the sitemap, put those URLs into an array, then loop through the ...
2
votes
0answers
102 views

File hierarchy for storing image in a social-networking website?

Which type of file-system is beneficial for storing images in a social-networking website of around 50 thousand users? I mean to say how to create the directory? What should be the hierarchy of ...
0
votes
0answers
23 views

trying to implement date facets hay-stack

I'm trying to implement a faceted search on date this is my query: sqs = SearchQuerySet().facet('job_location').facet('post_type').facet('job_type').facet('company_name').date_facet('start_date', ...
0
votes
0answers
47 views

how to use analyzer “ik" in haystack

As we know, ik analyzer is a plugin of elasticserach. When I use haystack to create indexes, I just need type python manage.py rebuild_index. I dont know if it create indexes through analyzer. If not, ...
0
votes
0answers
31 views

Does haystack only make model search?

does haystack only works for model search? I am using elasticsearch. I have indexes in elasticsearch's data folder. Why haystack can not found indexes which are not created from haystack model? Any ...