Tagged Questions
The haystack tag has no wiki summary.
7
votes
0answers
106 views
Scalable distributed file system for blobs like images and other documents [closed]
Cassandra & HBase both do not efficiently support storage of blobs like images. Storing directly on HDFS stresses the Namenode. Facebook's Haystack is not open source. So is Lustre a good choice ...
6
votes
3answers
350 views
How do I do a partial field match using Haystack?
I needed a simple search tool for my django-powered web site, so I went with Haystack and Solr. I have set everything up correctly and can find the correct search results when I type in the exact ...
4
votes
1answer
316 views
Haystack in INSTALLED_APPS results in Error: cannot import name openProc
I am pretty stuck right now. I have a Django project that's been working great until I tried to add Haystack/Whoosh for search. I've had this same stack in other projects working fine.
Whenever I ...
4
votes
0answers
136 views
Haystack - Why does RealtimeSearchIndex sometimes not update my saved object
I'm using Haystack and Whoosh with Django
Within search_index.py I have this
class PageIndex(RealTimeSearchIndex):
text = CharField(document=True, use_template=True)
creator = ...
4
votes
2answers
465 views
What is a good sample solrconfig.xml for django-haystack?
I am building out a solr instance for django, but the example provided from solr is super verbose, with many things that are not relevant to haystack. A sample with spelling suggestions, morelikethis, ...
4
votes
3answers
2k views
Filter Django Haystack results like QuerySet?
Is it possible to combine a Django Haystack search with "built-in" QuerySet filter operations, specifically filtering with Q() instances and lookup types not supported by SearchQuerySet? In either ...
3
votes
1answer
298 views
Haystack + Whoosh IndexError: Index was created on an architecture with different data sizes
When rebuilding my indices via ./manage.py rebuild_index I get this error:
Traceback (most recent call last):
File "manage.py", line 11, in <module>
execute_manager(settings)
File ...
3
votes
2answers
948 views
Building Solr indexes through Haystack throws unknown field error
I'm trying to integrate Haystack with Solr. When I try to build the index, I get an error
"Unknown field django_id" from SOLR. What's causing this to happen?
2
votes
1answer
84 views
Django-haystack returns results with “simple” backend, but not with “whoosh”
I'm trying to integrate a search with django-haystack,
While it works well with the "sample" backend, when replacing the backend with whoosh it always returns 0 results.
settings.py:
...
2
votes
0answers
35 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 ...
2
votes
1answer
91 views
Django haystack: Boosting search results if the searchterm appears in a specific field
I'm using django-haystack for searching on my site.
My problem is, I would like to have search results on top if the search term was found in a specific field.
Let's say I search for blog-entries, ...
2
votes
1answer
110 views
taggit and haystack+whoosh
I have a puzzle, my haystack+whoosh works just fine:) I can search through f.e. name of the content. BUT I want to add "taggit" to my core-model and search through tags then I have NO results:// and I ...
2
votes
1answer
288 views
Search performance of Sphinx vs. Haystack
I was wondering if anyone had or could point me in the direction of benchmark results of the performance of using Sphinx to do search vs. Haystack with a Xapian backend. I'm mainly concerned with full ...
2
votes
1answer
371 views
Django-Haystack with Solr contains search
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="...")
The __startswith option does ...
2
votes
2answers
139 views
Django Haystack refuses to show no results, even for absurd queries
My question may be a bit strange, but it's been bothering me since the behavior is not what I expected. Here is my query:
query = request.GET.get('q','')
#in search_indexes:
#start_datetime = ...
2
votes
1answer
452 views
Django Haystack/Solr: Faceting on a model but show results only from a ForeignKey field
I have two models in Django like follows(in pseudo code)
class Medicine(db.Model):
field_1 = db.CharField()
field_2 = db.CharField()
class Application(db.Model):
field_1 = db.CharField()
...
2
votes
1answer
134 views
Needle is in haystack but barn door is jammed shut!
The test below returns false ($pos = 0) when $haystack = "my keyword" and $needle = "my keyword", presumably because my stripos test returns 0 since there is no empty space in the barn.
What do I ...
2
votes
1answer
362 views
Django+Haystack+Whoosh: how to deal with language inflection
Many languages in Europe are inflectional. This means that one word can be written in multiple forms in text. For example, word 'computer' in polish "komputer" has multiple forms: "komputera", ...
2
votes
2answers
721 views
Django Haystack : search for a term with and without accents
I'm implementing a search system onto my django project, using django haystack. The problem is that some fields in my models have some french accents, and I would like to find the entries which ...
2
votes
2answers
914 views
Haystack / Whoosh Index Generation Error
I'm trying to setup haystack with whoosh backend. When i try to gen the index [or any index command for that matter] i receive:
TypeError: Item in ``from list'' not a string
if i completely remove ...
1
vote
1answer
25 views
Whoosh, Haystack, and AttributeError: 'Segment' object has no attribute 'compound' in production only
I'm using Whoosh 2.3.2, Haystack 2.0.0, and Django 1.3 under Python 2.7. On Localhost, it works great. In production, it explodes when I search.
Here's the full traceback:
File ...
1
vote
1answer
33 views
Django - Haystack in two differents apps
I am using Haystack in one app and its perfect. It is indexing everything that I need. But, now I created another app, with different model and content, and I would like to Haystack index it. The idea ...
1
vote
2answers
93 views
Count total search objects count in template using django-haystack
I am using django haystack with xapian as the backend search engine. I am using FacetedSearchView and FacetedSearchForm for faceting over the search. I have passed searchqueryset to the ...
1
vote
2answers
46 views
Django - It is possible to use Haystack with custom SQL directly
I'm in the process of choosing a Framework for a new project. I have basically the database schema developed(I have this schema running in other PHP webapps already).
In this project I will need to ...
1
vote
2answers
81 views
Multiple Cores in Django Haystack using Solr Backend
How do I configure HAYSTACK_SOLR_URL when using multiple cores?
I've set it to the address of core0, and that works, but only using one core…
The docs aren't that obvious to me… it just says
...
# ...
1
vote
2answers
196 views
haystack - how you display data from multiple models with ForeignKeys?
I have two models:
models.py
class model1 (models.Model):
field1_model1 = models.CharField()
filed2_model1 = models.CharField()
class model2 (models.Model):
field1_model2 = ...
1
vote
1answer
318 views
help this newb out with haystack and solr?
I just installed and setup haystack and solr with django 1.3, but when I search (with haystack default template), I get nothing. I copy and pasted the solr schema and updated my indexes, but I am ...
1
vote
0answers
183 views
django-cms-search not displaying any results
Hey I have been plugging away trying to get haystack working with whoosh to implement a search backend for a django cms project i have been working on. After figuring out some really weird ...
1
vote
1answer
124 views
Ordering Solr search result by day/week/month/year views
Have Video model and search index for it. Django-haystack and Solr are used. It is needed to sort result by video's views for day/week/month/year. Is it possible to this without always updating of ...
1
vote
0answers
201 views
Radius search for multiple locations with django-haystack and Spatial Solr Plugin
I have a Person model which now can have a number of office "locations", each with its own latitude/longitude.
Before one could add only 1 office, So i'd been using a fork I made for django-haystack ...
1
vote
0answers
137 views
Issue with Haystack/Whoosh SearchQuerySet's order_by
I define an index as shown below, zero-padding the order_key integerfield as specified in the doc.
class PlaceIndex(SearchIndex):
text = CharField(document=True, use_template=True)
order_key ...
1
vote
3answers
306 views
sed - Get only the replaced string from a multiline input & omit unmatched lines!
I want sed to omit all non-matching lines, and only output the replaced string (of the single/multiple intended line/s).
In other words: I've got a hay stack, and only want the needle returned, not ...
1
vote
2answers
331 views
Django Haystack Indexing More than one models
I am trying to implement Haystack search for my website with Whoosh back-end. I have been able to successfully setup the haystack app and I can search the model that I have registered, but when I ...
1
vote
1answer
299 views
no result are found - haystack django whoosh
everyone!
I have a huge problem!
I am using haystack and whoosh and django. I am sure I've done everything that is required to be done to make it works according to the documentation.
BUT!!!! ...
1
vote
1answer
183 views
haystack search startswith
Why when i use:
users = SearchQuerySet().all()
users = users.filter(name__startswith='foo')
i have query with result. And when i use
users = SearchQuerySet().models(UserProfile)
users = ...
1
vote
1answer
244 views
ValueError when using Whoosh and Django Haystack
I'm trying to set up Haystack with Whoosh but am getting this value error "ValueError: dictionary update sequence element #0 has length 9; 2 is required" when I run the count method on the ...
1
vote
2answers
915 views
Django and Haystack search problem
I am running Python 2.6, the lastest haystack, django 1.2 beta and I have tried both Woosh and Xapian backends.
The problem is that I cannot do a __lt or __gt filter on an integer field - when such ...
1
vote
1answer
1k views
Does anyone have examples of integrating Haystack/Solr with Django?
Note: This question originally applied to Xapian, but due to cross-platform issues and poor understanding of Xapian I (our team) chose Solr instead.
I'm looking for snippets, tricks, tips, links, and ...
0
votes
1answer
35 views
How to get search time in haystack-solr
How can i get the time it takes for a searching a query in haystack using solr at the back-end? i want to get this time and display it on my template. Something similar to what google shows.
0
votes
0answers
11 views
How to striptags in haystack highlight?
I am using django-haystack. In the highlight haystack provides, how can i render tags or striptags in the result.
{% for text in result.highlighted.text %}
...
0
votes
2answers
33 views
How to check in a particular model by default in haystack?
i am using haystack for searching. By default it searches in all the models and then provides the checklist of models indexed to refine search. Is there a way i can override this functionality i.e can ...
0
votes
2answers
18 views
How do I further reduce a SearchQuerySet based on a common M2M attribute
How do I further reduce a SearchQuerySet based on a common M2M attribute such that I can query for all objects where sky = blue?
Assign ObjectA:
Property → property_definition = "sky" value = ...
0
votes
1answer
29 views
How to get the count of search results in haystack search?
I am using django-haystack for searching. How can i display in the template the count of search results found using haystack search in database? I mean where do i have to change my haystack views to ...
0
votes
1answer
30 views
changing ordering of results in djanngo-haystack
I am using django-haystack for search. By default it is showing oldest objects first whereas i want to show latest on top. Can anyone guide me how can i do this?
My code sample is shown below:
...
0
votes
0answers
42 views
How to remove items from a Haystack SearchQuerySet
In Django you can remove items from a QuerySet by doing this as documented here:
queryset = QuerySet.remove(item)
Haystack SearchQuerySet is build on QuerySet but it appears that the remove method ...
0
votes
2answers
51 views
Can't use django management commands because of Import Errors when haystack tries to import multiligualmodel
I'm using django-haystack for searching on my site.
I'm also using django multilingual model for I18n.
I import MultilingualModel in search_indexes.py
I ca run all manangement commands as long as I ...
0
votes
0answers
30 views
Haystack cannot connect to Solr
I have an existing site where search worked fine until a few days ago. Now, no matter what keyword is used, no results are returned. I followed Haystack's troubleshooting guide and get the following ...
0
votes
1answer
76 views
django-haystack - Updating index after adding new field to index causing error
I have a django site which uses Haystack with the Xapian backend for search indexing. I've added a new field to one of the models being indexed, then added that field to the SearchIndex for that ...
0
votes
2answers
62 views
Solr + Haystack searching
I am trying to implement a search engine for a new app.
The app allows people to rate items (+1 or -1) - Giving the items a +ve or -ve score.
When people search for items, I'd like to take into ...
0
votes
1answer
68 views
Django - Strange behavior using static files
I'm new to Django. I'm getting insane trying to understand what is going on with static files(css's and images).
The resume of the problem is the following... when I use static views from a 3rd party ...