Facet search in Django application

2020-07-17 Thread penumatv
Hi All, I am developing a job list and search type of web application where my requirement is to enable facet searches like Amazon or Myntra. Are there any delivered/external python packages that can be used to achieve this? I also started reading about Apache Solr. Anybody has used any extern

Re: How to implement full-text search in Django?

2017-12-16 Thread Etienne Robillard
Thanks Egor. Django-haystack looks quite flexible and well-designed. My current plan is to use redisearch plugin for Redis: http://redisearch.io/ I'm thinking that I could write a script to import into redis a list of URLs by fetching a RSS file as input and then use redisearch to perform a

Re: How to implement full-text search in Django?

2017-12-16 Thread Egor Smolyakov
Check out this library https://github.com/django-haystack/django-haystack It supports a wide range of backends. On 16/12/2017, Etienne Robillard wrote: > Hi all, > > I would like some input on implementing a full-text search engine for my > website and blog. > > I really don't want to use Google

How to implement full-text search in Django?

2017-12-16 Thread Etienne Robillard
Hi all, I would like some input on implementing a full-text search engine for my website and blog. I really don't want to use Google search API or a external webservice to index my documents. Also, my blog is powered by ZODB while my main website uses Durus. Ideally, i would like to use Re

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

Advanced search in django?

2013-07-06 Thread Kamal Kaur
I have found the code for Soundex which is a phonetic algorithm, it is capable of searching from database despite of minor spelling differences. 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 ? Here is the link. https://githu

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

Advanced Search in django

2013-06-27 Thread Harjot Mann
How can we add advance search in django like google's advance search?? -- 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-users+unsubscr...@g

Re: Search in Django

2012-05-09 Thread Alireza Savand
Haystack is highly recommended! I can't give you helpful advice to guide you which backend is lighter, because i using it with Solr and it was/is prefect! But you can compare the backends itself to find-out which one is lighter to use. And i think by simple you mean a full-text search engine with

Search in Django

2012-05-09 Thread Lachlan Musicman
Hi, I want to implement search in my django project. Looking around, I see lots about Haystack. I looked at Whoosh for the backend, but then I saw a tutorial for Djapian/Xapian that made the whole thing look dead simple. Also, since then I've discovered that Whoosh is lightweight and while the

Re: Which apps/solutions are most appropriate for model based search in Django?

2009-10-22 Thread David De La Harpe Golden
>>> That is, a search on students >>> is essentially an answer to the question "Show students that belong to >>> the following schools, and who belong to the following states, and who >>> have the following degrees / diplomas". N.B. That in particular does sound like what might sometimes be calle

Re: Which apps/solutions are most appropriate for model based search in Django?

2009-10-22 Thread chefsmart
Yes, I am also not convinced that an engine focused on full-text search is relevant in this case. But i am no expert on that. I haven't actually benchmarked the performance of the current solution I am using, I am just looking to get some opinions or solutions if django users have encountered thi

Re: Which apps/solutions are most appropriate for model based search in Django?

2009-10-22 Thread bruno desthuilliers
On 22 oct, 07:54, chefsmart wrote: > This is on stackoverflow.com also, but I guess not all Django users > visit that site so I am posting this here also: - > > I have a Django app where most of the search is driven by foreign > keys. For example, assuming Student, School, State, and > Educatio

Which apps/solutions are most appropriate for model based search in Django?

2009-10-21 Thread chefsmart
This is on stackoverflow.com also, but I guess not all Django users visit that site so I am posting this here also: - I have a Django app where most of the search is driven by foreign keys. For example, assuming Student, School, State, and EducationalQualification are Django models, the user woul

Re: help implementing search in django

2008-08-25 Thread chefsmart
That's a really good suggestion. Will go over that code today. Still would like to hear other opinions though. On Aug 26, 1:48 am, Steve Potter <[EMAIL PROTECTED]> wrote: > I really don't have any experience with this.  However if I was trying > to implement a search, the first thing I would do

Re: help implementing search in django

2008-08-25 Thread Steve Potter
I really don't have any experience with this. However if I was trying to implement a search, the first thing I would do is look at the Django Admin code and see how it was done there. Steve On Aug 25, 1:15 pm, chefsmart <[EMAIL PROTECTED]> wrote: > Please seehttp://dpaste.com/hold/73759/I need

help implementing search in django

2008-08-25 Thread chefsmart
Please see http://dpaste.com/hold/73759/ I need some guidance implementing search feature in django. What I want to do is to be able to search for Regions. Let's suppose we have: - A page where the user will be able to specify (a) one or multiple states from a list, (b) one user to match with "c

Re: search in django

2006-08-18 Thread Andy Dustman
On 8/18/06, Adrian Holovaty <[EMAIL PROTECTED]> wrote: > > On 8/18/06, Matthew Flanagan <[EMAIL PROTECTED]> wrote: > > Why not use the same suffix syntax (or subset thereof) for other > > django queries ie. __istartswith, __iexact, etc, instead of creating a > > new one? > > This is a valid point.

Re: search in django

2006-08-18 Thread Adrian Holovaty
On 8/18/06, Matthew Flanagan <[EMAIL PROTECTED]> wrote: > Why not use the same suffix syntax (or subset thereof) for other > django queries ie. __istartswith, __iexact, etc, instead of creating a > new one? This is a valid point. One small argument in favor of the current syntax is that search_fi

Re: search in django

2006-08-18 Thread a
u guys rock!!! --~--~-~--~~~---~--~~ 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 unsubscribe from this group, send email to [EMAIL PROTECTED]

Re: search in django

2006-08-17 Thread Matthew Flanagan
On 18/08/06, Adrian Holovaty <[EMAIL PROTECTED]> wrote: > > On 8/17/06, Andy Dustman <[EMAIL PROTECTED]> wrote: > > http://code.djangoproject.com/ticket/2559 > > > > Implements ^ (istartswith), = (iexact), and @ (search). No prefix is > > icontains (current behavior). > > I've checked in this patc

Re: search in django

2006-08-17 Thread Adrian Holovaty
On 8/17/06, Andy Dustman <[EMAIL PROTECTED]> wrote: > http://code.djangoproject.com/ticket/2559 > > Implements ^ (istartswith), = (iexact), and @ (search). No prefix is > icontains (current behavior). I've checked in this patch (including documentation) in revision 3601. Thanks again for the patc

Re: search in django

2006-08-17 Thread Eric Walstad
On Thursday 17 August 2006 16:13, Adrian Holovaty wrote: > On 8/17/06, Andy Dustman <[EMAIL PROTECTED]> wrote: > > http://code.djangoproject.com/ticket/2559 > > > > Implements ^ (istartswith), = (iexact), and @ (search). No prefix > > is icontains (current behavior). > > Sweet! Thanks for the patc

Re: search in django

2006-08-17 Thread Adrian Holovaty
On 8/17/06, Andy Dustman <[EMAIL PROTECTED]> wrote: > http://code.djangoproject.com/ticket/2559 > > Implements ^ (istartswith), = (iexact), and @ (search). No prefix is > icontains (current behavior). Sweet! Thanks for the patch... Adrian -- Adrian Holovaty holovaty.com | djangoproject.com --

Re: search in django

2006-08-17 Thread Andy Dustman
On 8/16/06, Adrian Holovaty <[EMAIL PROTECTED]> wrote: > > On 8/15/06, Andy Dustman <[EMAIL PROTECTED]> wrote: > > In fact, it does LIKE %string%, which is quite expensive. Usually want > > I want out of an admin search is a startswith match, i.e. LIKE > > string%, which can use an index. Unfortun

Re: search in django

2006-08-16 Thread Adrian Holovaty
On 8/15/06, Andy Dustman <[EMAIL PROTECTED]> wrote: > In fact, it does LIKE %string%, which is quite expensive. Usually want > I want out of an admin search is a startswith match, i.e. LIKE > string%, which can use an index. Unfortunately there doesn't seem to > be a way to do this yet. Maybe some

Re: search in django

2006-08-15 Thread Andy Dustman
On 8/15/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Data in the database is searched by LIKE (or ILIKE) SQL command which > is wrapped in Django ORM. If you need fulltext search engine you can > use MySQL which has such feature (you need to user raw SQL for it), > postgresql needs some ad

Re: search in django

2006-08-15 Thread [EMAIL PROTECTED]
check http://openfts.sourceforge.net/ and http://www.sai.msu.su/~megera/postgres/gist/tsearch/V2/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-use

Re: search in django

2006-08-15 Thread a
wat are the addons needed for postgresql thanks a lot [EMAIL PROTECTED] wrote: > Data in the database is searched by LIKE (or ILIKE) SQL command which > is wrapped in Django ORM. If you need fulltext search engine you can > use MySQL which has such feature (you need to user raw SQL for it), > pos

Re: search in django

2006-08-15 Thread [EMAIL PROTECTED]
Data in the database is searched by LIKE (or ILIKE) SQL command which is wrapped in Django ORM. If you need fulltext search engine you can use MySQL which has such feature (you need to user raw SQL for it), postgresql needs some addons for it. --~--~-~--~~~---~--~

search in django

2006-08-15 Thread a
how is searching implemented in the admin interface inorder to use searching should we use pylucene thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to