django-haystack Questions

2

Solved

I'm with some problems in Django Haystack 1.2.5. I need to boost one field but aparently it is not working. I'm using Solr 1.4.1. My Index: class JobsTextIndex(indexes.SearchIndex): text = index...
Hectometer asked 3/12, 2011 at 13:51

1

Solved

I use django and elasticseach inside for search engine,Everything worked out,but recently have this error when i want change everything in database, for example when i wan't to create an new user f...
Hazing asked 11/8, 2013 at 17:23

1

Solved

It looks as if elasticsearch supports fuzzy queries (http://www.elasticsearch.org/guide/reference/query-dsl/fuzzy-query/) but I can't figure out a way to have django-haystack pass in that option. ...
Crescin asked 1/8, 2013 at 17:28

1

Solved

Haystack haystack_signal_processor let you use custom signal processor to initiate index for certain models. I have in my settings.py HAYSTACK_SIGNAL_PROCESSOR='my_app.signals.MySignalProcessor...
Unemployable asked 8/7, 2013 at 7:4

1

Solved

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 u...
Paviour asked 6/6, 2013 at 12:5

1

Solved

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 = mod...
Lucillalucille asked 31/5, 2013 at 2:12

3

Solved

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 FacetSearch...
Sustainer asked 24/11, 2011 at 18:54

2

I'm trying to get my head around the django-haystack tutorial in order to add search functionality to my application. Unfortunately, I don't quite understand some key parts when it comes to build t...
Emaciated asked 19/12, 2012 at 19:16

1

Solved

I'm building a log viewing utility which will handle real-time search in TBs of logs. I have decided to store logs in Solr and use it as search engine.I will use Django as framework in my project. ...
Thereafter asked 11/12, 2012 at 9:1

2

Solved

I am trying to setup haystack search with elasticsearch backend I am receiving the following error: ./manage.py rebuild_index ... Failed to clear Elasticsearch index: (404, u'IndexMissingExceptio...
Mystagogue asked 3/12, 2012 at 9:55

1

Solved

I've been using Django Haystack for a while now and it's great! I have a rather heavy site with data which needs to be updated from time to time (15 to 30 mins). When using the python manage.py up...
Misgovern asked 11/12, 2012 at 11:12

1

Is there any reason to set additional fields with indexed=False into SearchIndex? Documentation mentioned that additional fields should be defined for filtering or ordering results. By default Sea...
Arlyne asked 29/11, 2012 at 0:18

2

Solved

I'm using haystack with whoosh as backend for a Django app. Is there any way to view the content (in a easy to read format) of the indexes generated by whoosh? I'd like to see what data was indexe...
Driedup asked 7/3, 2010 at 8:48

2

Solved

TLDR; How does various boosting types work together in django, django-haystack and solr? I am having trouble getting the most obvious search results to appear first. If I search for caring for othe...
Isolt asked 4/9, 2012 at 20:39

3

Solved

I'm building a Django project that needs a good search functionality Which of the search engines out of these would be good to use with django haystack solr elasticsearch Xapian One other advi...
Reo asked 3/3, 2012 at 16:31

2

Solved

I downloaded a package (called pysolr 2.0.15) to my computer to be used with Haystack. The instructions asks me to add pysolr to my PYTHONPATH. What exactly does that mean? After extracting the py...
Weisberg asked 14/8, 2012 at 20:56

1

Is there a way of having only a filtered part of a model as a SeachQuerySet? Something like: query = SearchQuerySet().models(Entry.filter(categories__name='something')) instead of query = Searc...
Blastema asked 13/8, 2012 at 11:22

1

Solved

I was using haystack on my Windows computer, but I realized I needed other modules for my django app that are easier to install on Linux, so I moved to my VirtualBox with Ubuntu. I installed everyt...
Veliger asked 18/6, 2012 at 2:8

1

Solved

I just upgradated my django to 1.4. I am getting trouble with haystack app. Also, I tried to update haystack to last stable version but I still having problems. Does anyone had theses errors? How c...
Artistry asked 1/4, 2012 at 1:37

3

Solved

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?
Shurlock asked 20/2, 2010 at 7:18

1

Solved

I have Event model instances that can belong to one or more Organization model instances. I've implemented haystack 2.0.0 to index all of my Events. Here is an example search index. class EventIn...

1

I want to have the search form of django-haystack on the base.html template of my blog but the results on a different template page how can I do that ?
Geanticlinal asked 26/10, 2011 at 13:28

1

Solved

I want to export the results I have in a Queryset that I obtain from a haystack search view. In order to do this, I've found the best way is by doing it asyncronally, so I'm using Celery and Rabbit...
Particularism asked 23/6, 2010 at 14:55

1

Solved

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 pa...
Semipro asked 17/11, 2011 at 17:56

1

Solved

Suggestions needed for creating better and efficient search indexes for models having foreign key and many-to-many fields while using haystack with django. Sample Model: class Resource(models.Mod...
Perlaperle asked 12/7, 2011 at 9:36

© 2022 - 2024 — McMap. All rights reserved.