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
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
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
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
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
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
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
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
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
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
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,
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
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
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
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
>>> 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
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
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
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
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
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
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
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.
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
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]
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
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
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
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
--
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
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
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
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
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
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.
--~--~-~--~~~---~--~
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
36 matches
Mail list logo