Tagged Questions
2
votes
2answers
34 views
When to use Haystack/ElasticSearch vs Django's ORM
So I implemented Haystack with ElasticSearch a week ago within our BETA application. One thing I can notice is that getting some data (large amount) back to our users (for example listing all the ...
0
votes
1answer
18 views
haystack with elastic search creating one modelresult table for multiple search_indexes
Recently am trying to shift the search feature on my site from using xapian to elasticsearch. I have in my application two search_indexes and when searching am showing results in side by side in the ...
0
votes
1answer
27 views
Get foreign key object in SearchQuerySet results Haystack
I have the following models:
class EquipmentModel(models.Model):
name = models.CharField(max_length=64, blank=False)
description = models.CharField(max_length=64, blank=True)
manufacturer ...
1
vote
0answers
14 views
django-haystack and external indexing
I'm trying to understand what's the right way to:
feed documents for indexing directly to search backend (just in case I use elasticsearch)
then use resulting index from haystack to integrate with a ...
0
votes
1answer
117 views
Django haystack with elasticsearch, indexing issue
Im using django-haystack with elasticsearch but there is a problem with indexing. When rebuilding my index python manage.py rebuild_index following error is raised:
Traceback (most recent call ...
0
votes
0answers
35 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 ...
-4
votes
2answers
276 views
I want create search engine like Google, which search engine should I use? [closed]
I want create a search engine like google. Which search engine should I use? Does solr or elasticsearch suitable for that?
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, ...
1
vote
0answers
436 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
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
40 views
Elasticsearch and auto_query
In the database objects are named news and news test
class ItemIndex(indexes.SearchIndex, indexes.Indexable):
text = indexes.CharField(document=True)
name = ...
1
vote
1answer
76 views
what is model based search?
When I reading haystack document, I got Haystack is very Model-based and doesn’t work well outside of that use case.. What is model based search and model based data. Does google or bing search engine ...
0
votes
0answers
21 views
django haystack not returning results according to expectations
I have configured Django haystack with Elasticsearch Search Engine using QueuedSignalProcessor with redis Queue backend. Everything working except now I have some issue. I have two objects in db whose ...
0
votes
1answer
167 views
local variable 'results' referenced before assignment
I want to retrieve all indexes under elasticsearch index folder. I got this error.
UnboundLocalError at /tjobfucksearch/
local variable 'results' referenced before assignment
my views.py
from ...
1
vote
0answers
91 views
how haystack retrieve all indexes with elasticsearch
Edition:[django-haystack v2.0.0-beta pyelasticsearch(toastdriven) 0.0.5 elasticsearch0.18.5]
I am trying use haystack with elasticsearch. I have finished steps in Getting Started with Haystack,and ...