Re: Full text search available on PostgreSQL?

2014-10-07 Thread Benjamin Scherrey
Did you find a solution that worked with ModelAdmin.search_fields & Postgres? I'm running into the same question. thanx, -- Ben On Sat, Jun 28, 2014 at 11:15 PM, Bastian Kuberek wrote: > Hi, > > Just saw that django.contrib.admin.ModelAdmin.search_fields >

Re: Full text search available on PostgreSQL?

2014-07-08 Thread jirka . vejrazka
Also, not directly tied to ModelAdmin, but you might want to take a look at django-watson. HTH Jirka -Original Message- From: Johannes Schneider Sender: django-users@googlegroups.com Date: Tue, 08 Jul 2014 09:26:07 To: Reply-To: django-users@googlegroups.com Subject: Re: Full

Re: Full text search available on PostgreSQL?

2014-07-08 Thread Bastian Kuberek
This looks promising. Thanks -- 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...@googlegroups.com. To post to this group, send email to djan

Re: Full text search available on PostgreSQL?

2014-07-08 Thread Johannes Schneider
you could have a look at djorm-ext-pgfulltex. bg, Johannes On 28.06.2014 18:15, Bastian Kuberek wrote: Hi, Just saw that django.contrib.admin.ModelAdmin.search_fields full text search only

Re: Full text search available on PostgreSQL?

2014-06-29 Thread Anssi Kääriäinen
On Saturday, June 28, 2014 7:15:05 PM UTC+3, Bastian Kuberek wrote: > > Hi, > > Just saw that django.contrib.admin.ModelAdmin.search_fields > > full > text search only support MySQL. > > Are

Re: Full text search with PostgreSQL and Django

2010-12-17 Thread Jorge Bastida
http://haystacksearch.org/ 2010/12/17 marcoarreguin > Hi!! > > I need to implement a search engine with full text search, I'm using > postgreSQL and Django, I have searched in google ( > http://barryp.org/blog/entries/postgresql-full-text-search-django/ ) > but isn't there a more simple way ?? >

Re: Full Text Search

2010-10-01 Thread m1chael
maybe i misunderstood your question, but maybe it will help On Fri, Oct 1, 2010 at 8:19 PM, m1chael wrote: > Hello! > > I use PostgreSQL, and this is how I accomplished a full text search: > > def search(request): >  # how to set up postgresql for full text searching >  #alter table quote_quote

Re: Full Text Search

2010-10-01 Thread m1chael
Hello! I use PostgreSQL, and this is how I accomplished a full text search: def search(request): # how to set up postgresql for full text searching #alter table quote_quote add column body_tsv tsvector; #CREATE TRIGGER quote_quote_tsvectorupdate BEFORE INSERT OR UPDATE ON quote_quote FOR EA

Re: Full Text Search

2010-10-01 Thread Andrej
Check this out: http://www.julienphalip.com/blog/2008/08/16/adding-search-django-site-snap/ On Oct 1, 6:52 am, Alessandro Ronchi wrote: > On Fri, Oct 1, 2010 at 3:35 AM, Steve Holden wrote: > > On 9/30/2010 8:26 PM, Nick Arnett wrote: > > > Brain is mush, though. > > Thank you. I'm waiting with

Re: Full Text Search

2010-10-01 Thread Nick Arnett
On Fri, Oct 1, 2010 at 3:52 AM, Alessandro Ronchi < alessandro.ron...@soasi.com> wrote: > > > On Fri, Oct 1, 2010 at 3:35 AM, Steve Holden wrote: > >> On 9/30/2010 8:26 PM, Nick Arnett wrote: >> > Brain is mush, though. >> >> > Thank you. I'm waiting with hope :) > Brain less mushy now... Somet

Re: Full Text Search

2010-10-01 Thread Alessandro Ronchi
On Fri, Oct 1, 2010 at 3:35 AM, Steve Holden wrote: > On 9/30/2010 8:26 PM, Nick Arnett wrote: > > Brain is mush, though. > > Thank you. I'm waiting with hope :) -- Alessandro Ronchi http://www.soasi.com -- You received this message because you are subscribed to the Google Groups "Django u

Re: Full Text Search

2010-09-30 Thread Steve Holden
On 9/30/2010 8:26 PM, Nick Arnett wrote: > Brain is mush, though. Obviously, otherwise you'd have left it in the hope that someone else would reply with an answer before you recovered consciousness. Great heavens, this community is *so* anxious to help. Kudos for trying with a frazzled brain! reg

Re: Full Text Search

2010-09-30 Thread Nick Arnett
On Thu, Sep 30, 2010 at 8:34 AM, Alessandro Ronchi < alessandro.ron...@soasi.com> wrote: > Is there any way to make a FULL TEXT search not in BOOLEAN MODE? > I've found only > http://docs.djangoproject.com/en/1.1/ref/models/querysets/#search > > It says it uses BOOLEAN MODE as a default, but doesn

Re: Full-text search: what to use

2009-07-29 Thread Kegan
Any thoughts on using PostgreSQL built-in full text search ? On Jul 29, 5:49 pm, "dlvosse...@gmail.com" wrote: > I've recently adopted the use of xapian for full text search, via the > djapian django app which works like a charm. Xapian is written in C++ > with python bindings, and with the dja

Re: Full-text search: what to use

2009-07-29 Thread dlvosse...@gmail.com
I've recently adopted the use of xapian for full text search, via the djapian django app which works like a charm. Xapian is written in C++ with python bindings, and with the djapian app u can stay within the django realm; e.g. updating the index can be done with manage.py index.. When using djan

Re: Full-text search: what to use

2009-07-28 Thread alex finn
Thanks for your replies, it is useful. Has anyone used whoosh in production so far? Any ideas about it's performance? Alex. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group

Re: Full-text search: what to use

2009-07-28 Thread Russell Keith-Magee
On Tue, Jul 28, 2009 at 1:58 PM, Torsten Bronger wrote: > > Hallöchen! > > Russell Keith-Magee writes: > >> [...] >> >> As one data point - I use Sphinx fairly extensively at work. During >> development, I looked at Lucene as well, in the form of Solr (which is >> a nice wrapper around Lucene). >

Re: Full-text search: what to use

2009-07-27 Thread Torsten Bronger
Hallöchen! Russell Keith-Magee writes: > [...] > > As one data point - I use Sphinx fairly extensively at work. During > development, I looked at Lucene as well, in the form of Solr (which is > a nice wrapper around Lucene). I program a bibliography manager with Django. Users are able to uploa

Re: Full-text search: what to use

2009-07-27 Thread Russell Keith-Magee
On Mon, Jul 27, 2009 at 11:14 PM, alex finn wrote: > > Hello, > > I'm working on a huge django-based application that heavily utilizes > full-text search. Up until now I've been using external search service > built using SOLR that is deployed separately. > The problem is with such an approach I n

Re: full-text search

2009-05-28 Thread Alex Gaynor
On Thu, May 28, 2009 at 12:33 PM, creecode wrote: > > Hello Petry, > > Is there something about > http://docs.djangoproject.com/en/dev/ref/models/querysets/#search > that isn't working for you in 1.0.x? > > On May 28, 7:10 am, Petry wrote: > > > I'm trying to implement a search on my site, find

Re: full-text search

2009-05-28 Thread creecode
Hello Petry, Is there something about http://docs.djangoproject.com/en/dev/ref/models/querysets/#search that isn't working for you in 1.0.x? On May 28, 7:10 am, Petry wrote: > I'm trying to implement a search on my site, find this[1] solution > interesting because it is not necessary to use a

Re: full-text search and mediawiki markup apps

2007-09-08 Thread Useful Database
Hello friends, I recently happened to see the below information ... just thought that it could be useful to you people ... Thanks. -- *Introducing for the first time in **India**, a Product that

Re: full-text search and mediawiki markup apps

2007-09-08 Thread ringemup
Just yesterday, I was thinking how useful it would be to be able to use mediawiki markup syntax for a new project... and voila -- my prayers are answered! Thank you for putting this together! One problem... I'm getting a syntax error on import (using python 2.5): >>> import wikimarkup Traceback

Re: Public Domain ( was Re: Full Text Search w/ MySQL)

2006-08-12 Thread Jan Claeys
Op vr, 04-08-2006 te 16:55 +1000, schreef Ian Holsman: > To quote the paper: This “Give-It-Away” license provides no protection > for anyone if the donated software causes harm. > > ie.. even if you didn't mean it, if I used a piece of public domain > code in a app I write and it fails, i can s

Public Domain ( was Re: Full Text Search w/ MySQL)

2006-08-04 Thread Ian Holsman
On 03/08/2006, at 10:42 PM, Andrew Durdin wrote: the code in the paper is released intothe public domain, so there's nothing stopping any interested personfrom taking it and developing it into something more suited for generalsearching.AndrewThis isn't directed at you, or your paper Andrew.I kno

Re: Full Text Search w/ MySQL

2006-08-03 Thread Andrew Durdin
Adam Endicott wrote: > > Do any of the core devs see this as a candidate for inclusion in > contrib? Speaking as the author of the piece -- I don't. This code isn't developed enough to be particularly practical as-is: to be more useful it should probably support both natural language and boolean

Re: Full Text Search w/ MySQL

2006-08-02 Thread Adam Endicott
Nice work John, good stuff. Do any of the core devs see this as a candidate for inclusion in contrib? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to djang