Questions tagged [django-search-lucene]

6 questions
22
votes
5 answers

Apache solr search part of the word

I'm using apache solr search engine for indexing my website database.. I'm using django+http://haystacksearch.org/ So let's say I have document that have word "Chicken" When I search for "chicken" - solr can find this document But When I search…
Djangonaut
  • 5,511
  • 7
  • 40
  • 53
13
votes
3 answers

Is there a way to search for multiple terms in admin search? django

In the django admin search bar if i had a model with a column = fruit_name and I wanted to search that column for all instances with either the fruit_name = banana or apple which would show all of the bananas and apples, how could I do that?
user3806832
  • 663
  • 9
  • 22
2
votes
2 answers

haystack search is not returning results properly, error: list' object has no attribute 'filter'

I am a noob in django and haystack, This is my form that extends haystack SearchForm from haystack.forms import SearchForm from ksaprice_app.models import ProductDiff, Vendor from django import forms from haystack.query import SearchQuerySet class…
Javed
  • 5,904
  • 4
  • 46
  • 71
1
vote
1 answer

Full Text Search for django using MySQL

I am from PHP and now using Django, I like match against queries of PHP and want to use some already developed app. for full text search. Good part is there are many available like djapian, sphinx, lucene,solango and haystack. And bad is I don't…
1
vote
1 answer

Can I use Django 1.1 with django-search-lucene for full-text searching, and if so, what resources/links/docs can I reference to get it up and running?

A little background: I want to use Django Search with Lucene I have Django 1.1 w/ Python 2.5 installed MySQL 5.1 is being used My local machine is running Windows Vista x64, but we will deploy to Red Hat Linux Yes, I wish that right about now I was…
mkelley33
  • 5,323
  • 10
  • 47
  • 71
0
votes
2 answers

Django : Searching from different tables in django

I am trying to implement search functionality for the user in Django. I can use Q for one table search but here the scenerio is different. Here are my models: Class Profile(models.Model) name = models.OnoeToOneField(User) category =…
masterofdestiny
  • 2,751
  • 11
  • 28
  • 40