Tagged Questions
2
votes
1answer
137 views
Retrieving specif fields from nested object returned by elasticsearch
I am new to elastic search. I am trying to retrive the selective fields from nested object returned by elasticsearch. Below is the object stored in elastic search index:
...
0
votes
1answer
82 views
How do I query for empty MultiValueField results in Django Haystack
Using Django 1.4.2, Haystack 2.0beta, and ElasticSearch 0.19, how do I query for results which have an empty set [] for a MultiValueField?
0
votes
1answer
256 views
Django-Haystack : How to limit search to objects owned by user?
I have successfully made django-haystack with elasticsearch to work.
In the example below, I can search for any sales item and it would show up in the results.
I have created an Index:
class ...
1
vote
0answers
437 views
Using multiple location fields in ElasticSearch + Django-Haystack
I'm using django-haystack and ElasticSearch to index Stores.
Until now, each store had one lat,long coordinate pair; we had to change this to represent the fact that one store can deliver products to ...
0
votes
0answers
7 views
How haystack + elastic search work?
I have added taggit application to add tags to some user message.
tags = TaggableManager()
When i index the message and tags in searchindex.py
text = indexes.EdgeNgramField(document=True, ...
0
votes
0answers
58 views
Haystack: one searchIndex for multiple models
On the getting started page of Haystack, it describes the possibility of using one SearchIndex for multple models:
You generally create a unique SearchIndex for each type of Model you
wish to ...
0
votes
0answers
152 views
Faceted search in Haystack returning strange results
The code below should be fairly self-explanatory; I'm getting too many results back from Haystack, and I have no idea why.
# using Haystack 2.0 beta pyelasticsearch 0.1, and ElasticSearch 0.19.11
...
0
votes
0answers
48 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, ...