Re: Advanced search in django?

2013-07-08 Thread Kamal Kaur
On Sat, Jul 6, 2013 at 9:47 PM, Kamal Kaur wrote: > Sorry, didn't get you. > Can you please elaborate more? Reply awaited. -- Kamaljeet Kaur Blog:http://kamalkaur188.wordpress.com/ -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscr

Re: Advanced search in django?

2013-07-06 Thread Kamal Kaur
On Sat, Jul 6, 2013 at 9:39 PM, Javier Guerra Giraldez wrote: > not a separate file, but a separate field. either override the save() > method of your model, or connect to the pre_save() signal to keep it > updated with the 'original' text. for searches simply query this > field against the soun

Re: Advanced search in django?

2013-07-06 Thread Javier Guerra Giraldez
On Sat, Jul 6, 2013 at 11:04 AM, Kamal Kaur wrote: > But don't know how to implement it in my project to > search in database. Do I need to keep a > separate file? or what to do ? not a separate file, but a separate field. either override the save() method of your model, or connect to the pre_s

Re: Advanced Search in django

2013-06-28 Thread coded kid
Try django watson https://github.com/etianen/django-watson/ On Thursday, 27 June 2013 09:33:22 UTC+1, Harjot Mann wrote: > > On Thu, Jun 27, 2013 at 1:16 PM, Peith Vergil > > > wrote: > > Try using django-haystack. It's a nice Django app, very easy to use, and > > with good documentation: > h

Re: Advanced Search in django

2013-06-27 Thread Peith Vergil
What I would probably do in that situation is setup Whoosh and django-haystack. Then use Haystack's EdgeNgramField on your user model's firstname and lastname. On Thu, Jun 27, 2013 at 4:33 PM, Harjot Mann wrote: > On Thu, Jun 27, 2013 at 1:16 PM, Peith Vergil > wrote: > > Try using django-hayst

Re: Advanced Search in django

2013-06-27 Thread Harjot Mann
On Thu, Jun 27, 2013 at 1:16 PM, Peith Vergil wrote: > Try using django-haystack. It's a nice Django app, very easy to use, and > with good documentation: http://django-haystack.readthedocs.org/en/latest/. > It provides a QuerySet like API for several search engine backends. It works > with Solr,

Re: Advanced Search in django

2013-06-27 Thread Peith Vergil
Try using django-haystack. It's a nice Django app, very easy to use, and with good documentation: http://django-haystack.readthedocs.org/en/latest/. It provides a QuerySet like API for several search engine backends. It works with Solr, ElasticSearch, Whoosh, Xapian, etc. -- You received this me