django-haystack filter engine with elastic search backend. It gaves a list of all engine but i want to display only one engine that matches with maker

2019-10-14 Thread Priyanka patil
class PartLookUpHaystackSerializer(HaystackFacetSerializer): serialize_objects = True class Meta: # The `index_classes` attribute is a list of which search indexes # we want to include in the search. index_classes = [PartIndex] # The `fields` con

Re: django solr with haystack problem

2018-08-10 Thread Jason
if your code indentation is accurate, check get_model and index_queryset are actually part of the NoteIndex class class NoteIndex(indexes.SearchIndex, indexes.Indexable): text = indexes.CharField(document=True,use_template=True) author = indexes.CharField(model_attr='user') pub_date =

Re: How to achieve wildcard search using haystack in django

2018-04-11 Thread Gabriel - Iulian Dumbrava
Please note that there are a few considerations when using wildcards. First, there are some issues with haystack and woosh, as the one here <https://groups.google.com/forum/#!topic/django-haystack/gZE82Oxh-k4>. Wildcards work by default with autosearch, otherwise you'll have to c

How to achieve wildcard search using haystack in django

2018-04-10 Thread shawnmhy
I am currently working on haystack search in django. I met 2 problems, first, when I use 'Whoosh' engine, the search can only return the result that match exactly the same with my search key, for example if I type 'ABC', it cannot match 'ABCD' Secondly, how

Re: Django+Haystack+Elastic issue

2017-05-24 Thread Nick Gilmour
d you check that? >> >> On Tue, May 23, 2017 at 12:41 AM, Nick Gilmour >> wrote: >> >>> Hi all, >>> >>> >>> >>> I'm following an example to setup Django with Haystack and ES from here: >>> >>> https://krzyszt

Re: Django+Haystack+Elastic issue

2017-05-24 Thread Nick Gilmour
jango works... On Wed, May 24, 2017 at 4:55 PM, Avraham Serour wrote: > it sounds like elastic is paginating, did you check that? > > On Tue, May 23, 2017 at 12:41 AM, Nick Gilmour > wrote: > >> Hi all, >> >> >> >> I'm following an example to s

Re: Django+Haystack+Elastic issue

2017-05-24 Thread Avraham Serour
it sounds like elastic is paginating, did you check that? On Tue, May 23, 2017 at 12:41 AM, Nick Gilmour wrote: > Hi all, > > > > I'm following an example to setup Django with Haystack and ES from here: > > https://krzysztofzuraw.com/blog/2016/haystack-e

Django+Haystack+Elastic issue

2017-05-22 Thread Nick Gilmour
Hi all, I'm following an example to setup Django with Haystack and ES from here: https://krzysztofzuraw.com/blog/2016/haystack-elasticsearch-part-one.html Everything seems to be working OK except from the number of the results – they are always maximal 20. But actually a single query s

Django with Haystack

2017-01-08 Thread Branko Zivanovic
I'm using haystack with whoosh backend to implement a search on website. It works on /search page but it doesn't work on /members. It redirects me to search page if I try to submit form on any other page. How can I add search on multiple pages? -- You received this message becau

Django haystack faceted search

2016-10-17 Thread Ronnie Stevens
This might be called offtopic here, but the django-haystack group seems to be extremely quiet... I am trying to find some complete documentation to setup django-haystack with faceted search with Solr. I already have the search up and running, and indexed the facets I need. Testing this in

Re: NoReverseMatch Error using Django + Haystack + Elasticsearch

2016-10-15 Thread Aline C. R. Souza
. Thank you. Em sábado, 15 de outubro de 2016 04:43:21 UTC-3, Constantine Covtushenko escreveu: > > Hi Aline, > > I did not use Haystack but I am using ElastickSearch. > I carefully read you post on StackOverflow and see that search form > returns author of the post without `pk` ke

Re: NoReverseMatch Error using Django + Haystack + Elasticsearch

2016-10-15 Thread Constantine Covtushenko
Hi Aline, I did not use Haystack but I am using ElastickSearch. I carefully read you post on StackOverflow and see that search form returns author of the post without `pk` key defined. Did you check what is returned by ElastickSearch? May be your SearchForm returns exactly what Elastick stores

NoReverseMatch Error using Django + Haystack + Elasticsearch

2016-10-14 Thread Aline C. R. Souza
Hello everybody, I am having a issue using Django + Haystack + Elasticsearch to perform a website search. I made a question on StackOverflow, but I had no satisfatory answer. The problem is in this line: by {{ post.author }} post.author.pk works well when called by several views, but it is

elasticsearch for django with haystack

2016-05-19 Thread M Hashmi
My code is similar to like this if not exactly like in the link provided. But I am not able to search products added via products models. The link is http://stackoverflow.com/questions/37314696/djanog-elasticsearch-implementation-issue?noredirect=1#comment62151898_37314696. In this link user ha

django rest framework-haystack-elasticsearch

2016-05-06 Thread keba . diedhiou
Hello i have a problem with django rest framework-haystack-elasticsearch.when i execute http://example.com/api/v1/location/search/?city=Oslo i have a problem: "The model None is not registered" -- You received this message because you are subscribed to the Google Groups "Djan

Not getting any results back using DRF Haystack

2016-01-12 Thread amarshall
So I've used django rest framework to serialize my data to make api calls. Great, that all worked well. Now I wanted to implement a search and return the serialized data in JSON format like I do with normal data. I feel like I followed the drf-haystack basic usage guide( https:

New version of Xapian-Haystack (with Python 3 support)

2015-11-16 Thread Jorge Cardoso Leitão
Hi, I'm glad to announce Xapian-Haystack 2.0.0 <https://pypi.python.org/pypi/xapian-haystack/2.0.0>. The main features of this version are: - Support for Python 3 - Support for Django 1.8 (>=1.6) - Support for Xapian 1.3.* - N(Edge)grams (thanks to ANtlord <https://github.com/AN

Re: Search capability on Django 3.1.3 (Haystack)

2015-11-09 Thread Aaron C. de Bruyn
Without any specific information on the problems you are having, here is a link to the Haystack search tool: http://haystacksearch.org/ If you can provide us with more detail, we would be happy to help. -A On Sun, Nov 8, 2015 at 11:06 PM, nAncy sharma wrote: > Hi there, > > I am b

Search capability on Django 3.1.3 (Haystack)

2015-11-08 Thread nAncy sharma
Hi there, I am building a website using Django cms 3.1.3 ! I am facing problem in implementing search capability (Haystack elasticsearch) .Could you provide me with someuseful links? And is the Django cms VERSION (3.1.3) also an issue because of which i am not able to implement it ? Thank you

Django Cms 3.1.3 Search Using Haystack

2015-11-06 Thread nAncy sharma
Hi there, I am working with django cms 3.1.3 to build a website. I am trying to add functionality of "SEARCH" to the website .Tried using haystack with elasticsearch,whoosh,simple,xapian for which i followed the haysatck documentaion. Still unsuccessful in achieving the functionalit

UnicodeError while searching in haystack/whoosh index

2015-04-28 Thread Florian Schweikert
Hi, I'm working on an django-cms 3.0.13/py2.7 page atm and came across an weird behaviour using haystack with whoosh. When using rebuild_index everything works fine. But using update_index afterwards leads to an UnicodeDecodeError when searching for a page with umlauts. Error thrown in &q

Re: Multilingual search with Haystack

2014-08-19 Thread Simon Bächler
It's not that simple. When using a search server you should have a separate index per language. Search server are processing text to improve indexing such as saving only the stem of a verb or removing plurals. This is highly language specific. The main problem is therefore the schema creation a

Re: Multilingual search with Haystack

2014-08-17 Thread Collin Anderson
Could you simply have a field to record the language, and then filter by that language when searching? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-us

Multilingual search with Haystack

2014-08-17 Thread Simon Bächler
Hi I need to set up a search server for our production servers. Each production server has multiple Django instances and every instance has multiple languages. As a search backend I'm leaning towards Elasticsearch because it is easier to add new sites to the index. Unfortunately Hay

display Foreign Key values in Django haystack search results

2014-07-24 Thread Kannan
Hello Everyone.. I have posted this question in Stackoverflow. I didn't not get answers so far.. posting here to hope some help from you guys.. http://stackoverflow.com/questions/24936919/display-foreign-key-values-in-django-haystack-search-results I am new to django and haystack. Can a

Haystack - Stopwords

2013-10-25 Thread Ezequiel Bertti
I create a repository with a lot of stopwords of many languages. https://github.com/ebertti/language-resource Please, make your contribution! -- Ezequiel Bertti E-Mail: eber...@gmail.com Cel: (21) 9188-4860 -- You received this message because you are subscribed to the Google Groups "Django

Re: [GD 40883] Re: Haystack

2013-07-30 Thread Sandeep kaur
On Tue, Jul 30, 2013 at 8:24 PM, Kamal Kaur wrote: > > I have created the template for haystack search and can open it, enter > any query. But there is no connectivity with database yet and its not > giving results. What I have uderstood is that, in haystack, indexes > for models

Re: Haystack

2013-07-30 Thread Kamal Kaur
On Tue, Jul 30, 2013 at 3:10 PM, Kamal Kaur wrote: > > What I am missing? As this command must create indexes by processing models. > And how does my search_indexes.py file actually look like? > Currently it looks like this: http://tny.cz/d842c556 I have created the template

Haystack

2013-07-30 Thread Kamal Kaur
Running the following command, output is: "All documents removed." $ ./manage.py rebuild_index Documentation says- "Simply run ./manage.py rebuild_index. You’ll get some totals of how many models were processe

Django-haystack search keyword support international characters like ö å

2012-12-27 Thread Manikandan Murugappan
I am trying for International characters using Django-haystack as i am new to django.. Can anyone help this one for me.. -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google

Re: haystack problem - already registered error

2012-11-02 Thread Laxmikant Gurnalkar
Hey Any Solution on this ? On Wednesday, September 15, 2010 4:53:26 AM UTC+5:30, Kenneth Gonsalves wrote: > > hi, > > I have installed haystack with xapian backend. My relevant code is like > this: > > import haystack > haystack.autodiscover() > > from haystack.in

Re: Haystack with Whoosh Not Redirecting.

2012-06-25 Thread Nikolas Stevenson-Molnar
ts? any example? thanks. >>> >>> Nikolas Stevenson-Molnar wrote: >>>> Take another look at your get_absolute_url method. As written, it >>>> specifies several keyword arguments to the view, but the "findme" view >>>> does not take any ar

Re: Haystack with Whoosh Not Redirecting.

2012-06-25 Thread coded kid
evenson-Molnar wrote: > >> Take another look at your get_absolute_url method. As written, it > >> specifies several keyword arguments to the view, but the "findme" view > >> does not take any arguments. Also, what does your urls.py file look like? > >> > >

Re: Haystack with Whoosh Not Redirecting.

2012-06-25 Thread Nikolas Stevenson-Molnar
s your urls.py file look like? >> >> _Nik >> >> On 6/25/2012 10:14 AM, coded kid wrote: >>> I successfully installed whoosh and made it work with Haystack. Things >>> are working fine but I'm facing one problem which is; after searching >>> for

Re: Haystack with Whoosh Not Redirecting.

2012-06-25 Thread coded kid
ake any arguments. Also, what does your urls.py file look like? > > _Nik > > On 6/25/2012 10:14 AM, coded kid wrote: > > I successfully installed whoosh and made it work with Haystack. Things > > are working fine but I'm facing one problem which is; after searching > >

Re: Haystack with Whoosh Not Redirecting.

2012-06-25 Thread Nikolas Stevenson-Molnar
ed whoosh and made it work with Haystack. Things > are working fine but I'm facing one problem which is; after searching > for a keyword and it print out the results, when I click on the > result(title), It won't redirect me to the page of the keyword I > clicked on,

Haystack with Whoosh Not Redirecting.

2012-06-25 Thread coded kid
I successfully installed whoosh and made it work with Haystack. Things are working fine but I'm facing one problem which is; after searching for a keyword and it print out the results, when I click on the result(title), It won't redirect me to the page of the keyword I clicked on, it

Haystack with Solr- Schema Parsing Failed

2012-06-23 Thread coded kid
I'm trying to rebuild_index, but after building the schema ( manage.py build_solr_schema ) I copy and paste the output in the schema.xml file. After restarting the server and rebuild_index ( manage.py rebuild_index ) I'm getting the below error. I've been trying to get the problem, yet no success!

Re: Haystack Solr Error

2012-03-06 Thread Sam Lai
On 5 March 2012 07:49, coded kid wrote: > I'm trying to rebuild_index, so after inputting manage.py rebuild- > index , I'm getting: > > Removing all documents in your index because you said so. > fail to clear Solr index: [Errno 10061] No connection could be made > because the target > machine act

Haystack Solr Error

2012-03-04 Thread coded kid
I'm trying to rebuild_index, so after inputting manage.py rebuild- index , I'm getting: Removing all documents in your index because you said so. fail to clear Solr index: [Errno 10061] No connection could be made because the target machine actively refused it. What I'm I doing wrong? -- You re

Haystack and Xapian

2012-03-01 Thread coded kid
Hi guys, I want to use Django Haystack with Xapian on my django site for search function. After setting all the necessary settings. I went ahead to input: manage.py rebuild_index , after inputting 'y' I'm getting an error saying: No module named xapian_backend. I can see the xapian

Haystack and date facets, anyone knows how it works?

2011-11-07 Thread Andre Lopes
Hi, I'm trying to do a date facet with Haystack using Solr. The thing is that I have no clue on how to use the results that I get from Haystack and how to put this results in a Django template. I have made a post in stackoverflow, but until now I have no clues on how to achieve this. Ca

Haystack No site conf error . How to debug ?

2011-06-23 Thread Satyajit Sarangi
#x27;../registration/templates'), # Don't forget to use absolute paths, not relative paths. ) INSTALLED_APPS = ( 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.c

Re: haystack

2011-05-12 Thread Sam Lai
On 12 May 2011 17:31, pankaj sharma wrote: > > can u tell me which one is better in sphinx and haystack Haystack provides only the glue between Django and a search engine/indexer. With Haystack, you still need to pick a search engine to use, e.g. Solr, Whoosh, Xapian. It doesn't sup

Re: haystack

2011-05-12 Thread Tim Sawyer
Here's the instructions I wrote when I added search with Haystack and Whoosh to my site. http://drumcoder.co.uk/blog/2010/may/19/django-text-search-haystack-and-whoosh/ Hope that helps point you in the right direction. Tim. > hello friends, i want to use haystack for my website, &g

Re: haystack

2011-05-12 Thread pankaj sharma
can u tell me which one is better in sphinx and haystack On May 11, 10:01 pm, Tarkeshwar Thakur wrote: > In your settings filehttp://docs.djangoproject.com/en/dev/topics/settings/ > > On Thu, May 12, 2011 at 10:20 AM, pankaj sharma > wrote: > > > > > > > >

Re: haystack

2011-05-11 Thread Tarkeshwar Thakur
In your settings file http://docs.djangoproject.com/en/dev/topics/settings/ On Thu, May 12, 2011 at 10:20 AM, pankaj sharma wrote: > hello friends, i want to use haystack for my website, > but i am having too many problems to install it. > in the dowumentation it is telling to add hayst

haystack

2011-05-11 Thread pankaj sharma
hello friends, i want to use haystack for my website, but i am having too many problems to install it. in the dowumentation it is telling to add haystack to ur installed apps. now it it telling to do "HAYSTACK_SITECONF = 'myproject.search_sites'" now where should i type this

Re: Problem of installing haystack and thumbnail a python app

2011-03-07 Thread bayuadji
Hi, looked from your staktrace it seems that python didn't found thumbnail and haystack library. You could check by running sys.path from your django shell -adji- -Original Message- From: yozloy Sender: django-users@googlegroups.com Date: Sun, 6 Mar 2011 20:50:28 To: Rep

Problem of installing haystack and thumbnail a python app

2011-03-07 Thread yozloy
ies.py", line 23, in raise ImproperlyConfigured('ImportError %s: %s' % (app, e.args[0])) django.core.exceptions.ImproperlyConfigured: ImportError haystack: cannot import name Thumbnail Anybody can tell me how to solve this problem? -- You received this message because y

Re: Haystack error rebuinding index

2010-12-21 Thread Daniel França
Hi, the problem was some incompatibilites between haystack and haystack-xapian 2010/12/21 Daniel França > here's the stackstrace > > Traceback (most recent call last): > File "manage.py", line 28, in > execute_from_command_line() > File > "/us

Re: Haystack error rebuinding index

2010-12-21 Thread Daniel França
ons.__dict__) File "/usr/lib/python2.6/dist-packages/django/core/management/base.py", line 219, in execute output = self.handle(*args, **options) File "/usr/lib/python2.6/dist-packages/django/core/management/base.py", line 348, in handle return self.handle_noargs(*

Re: Haystack error rebuinding index

2010-12-21 Thread Daniel França
Hi, here's my search index: import datetime from haystack import indexes from haystack import site from profiles.models import Profile class ProfileIndex(indexes.SearchIndex): text = indexes.CharField(use_template=True, document=True) first_name = indexes.CharField(model

Re: Haystack error rebuinding index

2010-12-20 Thread Sam Lai
2010/12/21 Daniel França : > anyone? > > 2010/12/19 Daniel França >> >> Hi all >> I was using haystack(xapian) at a Mac, so I moved it to a Linux (Ubuntu >> 10.10) using python 2.6.6, but now when I try to rebuild the index I get the >> following error: &

Re: Haystack error rebuinding index

2010-12-20 Thread Daniel França
anyone? 2010/12/19 Daniel França > Hi all > I was using haystack(xapian) at a Mac, so I moved it to a Linux (Ubuntu > 10.10) using python 2.6.6, but now when I try to rebuild the index I get the > following error: > AttributeError: 'ProfileIndex' object has n

Haystack error rebuinding index

2010-12-19 Thread Daniel França
Hi all I was using haystack(xapian) at a Mac, so I moved it to a Linux (Ubuntu 10.10) using python 2.6.6, but now when I try to rebuild the index I get the following error: AttributeError: 'ProfileIndex' object has no attribute 'full_prepare' ProfileIndex is my index

haystack problem - already registered error

2010-09-14 Thread Kenneth Gonsalves
hi, I have installed haystack with xapian backend. My relevant code is like this: import haystack haystack.autodiscover() from haystack.indexes import * from haystack import site from web.models import Stock class StockIndex(RealTimeSearchIndex): text = CharField(document=True

Re: Django Sphinx or haystack Xapian

2010-06-24 Thread euan.godd...@googlemail.com
We are in the process of switching from a custom Xapain installation to Solr as we found Xapian quite limited in its ability to do faceting, spelling suggestions, or highlighting. If you don't need any of those things, I would recommend Xapian (although I've not used it through Haystac

Re: Django Sphinx or haystack Xapian

2010-06-24 Thread Dmitry Dulepov
Hi! zweb wrote: > 2) Sphinx has slow index update. Updating index takes as much time > as building a new one. I have a Sphinx indexed form with 2 million posts. Indexing takes mess than 2 minutes. Is that considered slow? I use full rebuild of the index even 10 minutes. Incremental reindexing i

Real time search using Django Sphinx or haystack Xapian

2010-06-19 Thread zweb
" I'm storing a copy of the searchable text in a MyISAM table and using the MySQL search on it." I need to search results to be immediately available as soon as they are updated in DB. This will require me to update the index in real time which is not very efficient. Haystack do

Re: Django Sphinx or haystack Xapian

2010-06-19 Thread zweb
I am tilting towards Haystack Xapian solution over django sphinx mainly for two reasons 1) Haystack supports - Solr, Xapian and Whoosh. So in future I can easily migrate from Xapian to Solr as my need grows. 2) Sphinx has slow index update. Updating index takes as much time as building a new

Re: Django Sphinx or haystack Xapian

2010-06-19 Thread Nick Arnett
On Sat, Jun 19, 2010 at 9:21 AM, zweb wrote: > > (Mysql text search will not work as I use INNODB. Solr is powerful but > I heard it is very memory hungry and it is in Java. Whoosh is not yet > as mature as others. So that leaves choice between Django Sphinx and > Haystack Xapian

Re: Django Sphinx or haystack Xapian

2010-06-19 Thread Nick Arnett
On Sat, Jun 19, 2010 at 9:21 AM, zweb wrote: > I need to implement search solution over models in mysql. > > Anyone has experience with both or has gone through same decision > making? > > What should I consider before choosing one or other? I'm making a similar decision... as far as I can see,

Django Sphinx or haystack Xapian

2010-06-19 Thread zweb
is in Java. Whoosh is not yet as mature as others. So that leaves choice between Django Sphinx and Haystack Xapian.) thanks -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegrou

Re: I have a problem with the pagination with haystack and apache solr

2010-04-23 Thread Ray McBride
> > What I do here in search_indexes.py is this: > > > from haystack import site > > from atl_cms.content_type.models import News, Document > > > site.register(News) > > site.register(Document) > > > On Fri, Apr 23, 2010 at 4:18 AM, Ray McBride wrote: > >

Re: I have a problem with the pagination with haystack and apache solr

2010-04-23 Thread Ray McBride
You have no SearchIndex class. see the quick start guide in the link I sent you R On 23 Apr, 18:23, Ariel wrote: > What I do here in search_indexes.py is this: > > from haystack import site > from atl_cms.content_type.models import News, Document > > site.register(News) > s

Re: I have a problem with the pagination with haystack and apache solr

2010-04-23 Thread Ariel
Where does the apache solr save the index ??? On Fri, Apr 23, 2010 at 1:23 PM, Ariel wrote: > What I do here in search_indexes.py is this: > > from haystack import site > from atl_cms.content_type.models import News, Document > > site.register(News) > site.register(Documen

Re: I have a problem with the pagination with haystack and apache solr

2010-04-23 Thread Ariel
What I do here in search_indexes.py is this: from haystack import site from atl_cms.content_type.models import News, Document site.register(News) site.register(Document) On Fri, Apr 23, 2010 at 4:18 AM, Ray McBride wrote: > You should have defined the fields yourself in

Re: I have a problem with the pagination with haystack and apache solr

2010-04-23 Thread Ray McBride
solr admin > > interface? > > > Are you using the code that I posted for you previously? > > > Ray > > > On Apr 19, 6:29 pm, Ariel wrote: > > > Hi everybody: > > > I have a big problem with pagination using apache solr and haystack, this > >

Re: I have a problem with the pagination with haystack and apache solr

2010-04-22 Thread Ariel
using the code that I posted for you previously? > > Ray > > On Apr 19, 6:29 pm, Ariel wrote: > > Hi everybody: > > I have a big problem with pagination using apache solr and haystack, this > is > > what it is happening: I have a site where the news are being indexin

Re: I have a problem with the pagination with haystack and apache solr

2010-04-21 Thread Ray McBride
How many results are returned when you search using the solr admin interface? Are you using the code that I posted for you previously? Ray On Apr 19, 6:29 pm, Ariel wrote: > Hi everybody: > I have a big problem with pagination using apache solr and haystack, this is > what it is hap

Re: I have a problem with the pagination with haystack and apache solr

2010-04-21 Thread Massimiliano della Rovere
What happens if you switch pagination off? On Mon, Apr 19, 2010 at 19:29, Ariel wrote: > Hi everybody: > I have a big problem with pagination using apache solr and haystack, this is > what it is happening: I have a site where the news are being indexing with > haystack and s

I have a problem with the pagination with haystack and apache solr

2010-04-19 Thread Ariel
Hi everybody: I have a big problem with pagination using apache solr and haystack, this is what it is happening: I have a site where the news are being indexing with haystack and solr, but the problem is that when a I make the search the pagination is showing me more match results that what really

Re: How to make pagination with haystack

2010-04-08 Thread Ray McBride
page is passed in by the view http://github.com/toastdriven/django-haystack/blob/master/haystack/views.py django pagination requires page_obj http://code.google.com/p/django-pagination/source/browse/trunk/pagination/templates/pagination/pagination.html best wishes Ray -- http://raymcbride.com

Re: How to make pagination with haystack

2010-04-08 Thread Ariel
That variables in the piece of code that you have given are automatically passed by the faceted view of the haystack to the search.html template ??? On Thu, Apr 8, 2010 at 10:43 AM, Ray McBride wrote: > Try > > {% with page as page_obj %} > {% paginate %} > {% endwith %} > >

Re: How to make pagination with haystack

2010-04-08 Thread Ray McBride
Try {% with page as page_obj %} {% paginate %} {% endwith %} Ray On Apr 8, 2:57 pm, Ariel wrote: > Hi everybody: > I am relatively newbie in django, I have an application with search > functionalities that's why I am using haystack with solr, the search work > perfectly but I

Re: How to make pagination with haystack

2010-04-08 Thread Tom Evans
On Thu, Apr 8, 2010 at 2:57 PM, Ariel wrote: > Hi everybody: > I am relatively newbie in django, I have an application with search > functionalities that's why I am using haystack with solr, the search work > perfectly but I need to make the pagination but I have not idea how

How to make pagination with haystack

2010-04-08 Thread Ariel
Hi everybody: I am relatively newbie in django, I have an application with search functionalities that's why I am using haystack with solr, the search work perfectly but I need to make the pagination but I have not idea how to do it, could you give some help ??? how to do it ??? Thanks in ad

Re: Haystack/Whoosh problem

2009-10-28 Thread nausikaa
sikaa wrote: > Hi there > > I've been trying to use haystack with the whoosh backend in my django > app. > I've installed whoosh and haystack using > pip install Whoosh > pip install django-haystack > > Then I added 'haystack' to my INSTALLED_APPS in set

Haystack/Whoosh problem

2009-10-28 Thread nausikaa
Hi there I've been trying to use haystack with the whoosh backend in my django app. I've installed whoosh and haystack using pip install Whoosh pip install django-haystack Then I added 'haystack' to my INSTALLED_APPS in settings.py and when trying to run python manage.py ru