Django-sphinx DOC ID, different column

2010-08-18 Thread Lukáš
-sphinx. I dont know... maybe I just dumb lol So my question would be: How can I specify another column as DOC id in django-sphinx? Regards -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to

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 Haystack). I have

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

Real time search using Django Sphinx or haystack Xapian

2010-06-19 Thread zweb
Jun 19, 2010 at 9:21 AM, zweb <traderash...@gmail.com> 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

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 <traderash...@gmail.com> 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 bet

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

Django Sphinx or haystack Xapian

2010-06-19 Thread zweb
and it 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...@google

Re: Django Sphinx Foreign key search

2010-06-18 Thread urukay
le can be found here: http://www.marcofucci.com/tumblelog/31/aug/2009/django-sphinx-search-... I've discussed this foreign key search with author of that article, Marco Fucci, and he helped me really a lot to understand the way Sphinx works. Hope it helps. Sorry for the delay, but i needed to finis

Any Experiences with Sphinx Search and Django-sphinx?

2010-06-01 Thread zweb
I am looking to provide search. All content is in MYSQL DB in innodb tables. That rules out Mysql full text search option, which would have been my first choice. Other option I am looking at it is Sphinx search with django-sphinx. Any experiences with it good and bad? Other thing I looked

Re: Django Sphinx Foreign key search

2010-05-22 Thread Allen Machary
ch on model, everything goes fine >>> >> when >>> >> searching TextFields but I have a problem with ForeignKey field. >>> >>> >> How can i do that? Can anyone point me to the right direction? >>> >>> >> Thanks >>> >>> &g

Re: Django Sphinx Foreign key search

2010-05-22 Thread Allen Machary
t;> >> searching TextFields but I have a problem with ForeignKey field. >>> >>> >> How can i do that? Can anyone point me to the right direction? >>> >>> >> Thanks >>> >>> >> Model example: >>> >>>

Re: Django Sphinx Foreign key search

2010-05-22 Thread urukay
t; >> >> -- >> >> View this message in >> >> >> context:http://old.nabble.com/Django-Sphinx-Foreign-key-search-tp28219147p282... >> >> Sent from the django-users mailing list archive at Nabble.com. >> >> > -- >> > You received this

Re: Django Sphinx Foreign key search

2010-05-22 Thread esatterwh...@wi.rr.com
t;> class Model1(models.Model): > > >>      text_field =models.TextField(max_length=250) > >>      fek_field = models.ForeignKey('Model2') > > >> class Model2(models.Model): > >>      text_field = models.TextField(max_length=250) > > >> -- &g

Re: Django Sphinx Foreign key search

2010-05-21 Thread urukay
   fek_field = models.ForeignKey('Model2') >> >> class Model2(models.Model): >>      text_field = models.TextField(max_length=250) >> >> -- >> View this message in >> context:http://old.nabble.com/Django-Sphinx-Foreign-key-search-tp28219147p282... >> Sent

Re: Django Sphinx Foreign key search

2010-05-21 Thread urukay
earches of your django models > in a matter of minutes. In the case of the foreign key field, with > haystack, you could just include texts from related Model1s in the > search template for Model2. That's of course a tad wasteful in some > ways, but OTOH might be exactly what

Re: Django Sphinx Foreign key search

2010-05-20 Thread David De La Harpe Golden
Model1s in the search template for Model2. That's of course a tad wasteful in some ways, but OTOH might be exactly what you want. I don't use django-sphinx so I'm not clear how to do it there, but a conceptually related approach does work with raw sphinx apparently: you can use joins

Re: Django Sphinx Foreign key search

2010-05-19 Thread yafeng wu
l2') > > class Model2(models.Model): >      text_field = models.TextField(max_length=250) > > -- > View this message in > context:http://old.nabble.com/Django-Sphinx-Foreign-key-search-tp28219147p282... > Sent from the django-users mailing list archive at Nabble.com. -- You

Django Sphinx Foreign key search

2010-04-13 Thread urukay
(max_length=250) fek_field = models.ForeignKey('Model2') class Model2(models.Model): text_field = models.TextField(max_length=250) -- View this message in context: http://old.nabble.com/Django-Sphinx-Foreign-key-search-tp28219147p282... Sent from the django-users mailing list archive

Django Sphinx Foreign key search

2010-04-12 Thread urukay
(max_length=250) fek_field = models.ForeignKey('Model2') class Model2(models.Model): text_field = models.TextField(max_length=250) -- View this message in context: http://old.nabble.com/Django-Sphinx-Foreign-key-search-tp28219147p28219147.html Sent from the django-users mailing list

Re: Date Filtering in Django-Sphinx

2009-03-30 Thread Brian Neal
On Mar 30, 6:11 am, Alfonso wrote: > > And in my search view I have a simple filter (which is where I think > the problem lies): > > if date == "next30": >        results = queryset.filter(date_time>=(datetime.datetime.now)) > > (Attempting to pull future dates just to

Date Filtering in Django-Sphinx

2009-03-30 Thread Alfonso
Using sphinx for search in my django app and whilst it's great I can't seem to get any date filtering happening. Sphinx conf is fairly unremarkable: source event_event_en : base { # main document fetch query # mandatory, integer document ID field MUST be the first selected column

Re: django-sphinx Passages Help

2009-02-27 Thread fortunatestar
me too, "BuildExcerpts" I wanto to the reslut highligting 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-users@googlegroups.com To

django-sphinx Passages Help

2009-02-18 Thread Worldreptiles
I asked this question on the django-sphinx group a few days ago but so far havent recievied any replies so i thought i would ask here. I'm trying to use the passages function "BuildExcerpts" feature of sphinx and have been unable to get it to work. Im not new to sphinx but i am to

Re: Django Sphinx

2009-01-20 Thread Alfonso
All fixed - anyone who stumbles across this error - update to the latest trunk of django-sphinx and works fine! On Jan 20, 1:23 pm, Alfonso <allanhender...@gmail.com> wrote: > Hello, > > I've used django-sphinx/sphinx engine in the past and found it a > fantasic soluti

Django Sphinx

2009-01-20 Thread Alfonso
Hello, I've used django-sphinx/sphinx engine in the past and found it a fantasic solution but now running into a problem in a new build I haven't seen before: So sphinx is all set up and working and in the appropriate view I have: def search(request): search_query = request.GET.get('q

Re: Django-sphinx with postgresql

2008-10-09 Thread Anderson Santos
Anderson On Oct 8, 2:37 pm, "Rob Sutherland" <[EMAIL PROTECTED]> wrote: > Hi, > > I'm working on setting up the sphinx search tool with django-sphinx > and I have a few questions for any > current users out there. First, while googling I see a lot of links >

Django-sphinx with postgresql

2008-10-08 Thread Rob Sutherland
Hi, I'm working on setting up the sphinx search tool with django-sphinx and I have a few questions for any current users out there. First, while googling I see a lot of links to http://www.davidcramer.net/ which don't resolve and I see that David Cramer is listed as the package maintainer