Re: Developing a search engine

2010-12-15 Thread Christophe Pettus
On Dec 15, 2010, at 5:57 PM, Sam Lai wrote: > If you're using MySQL, Django can interface with its FTS component - > http://docs.djangoproject.com/en/dev/ref/models/querysets/#search PostgreSQL also has a very good built-in full text search function. You'll need to write a tiny bit of raw SQL,

Re: Developing a search engine

2010-12-15 Thread Sam Lai
On 16 December 2010 08:56, marcoarreguin wrote: > I'm trying to make a search engine with my database, parsing de text > that the user write in the textbox to make a list with the cleaned > words, in just one table of the DB in the fields: title, descripcion > and tags, I have something like this

Developing a search engine

2010-12-15 Thread marcoarreguin
I'm trying to make a search engine with my database, parsing de text that the user write in the textbox to make a list with the cleaned words, in just one table of the DB in the fields: title, descripcion and tags, I have something like this but I don't know how to finish it: from django.http imp

Developing a search engine

2010-12-15 Thread marcoarreguin
I'm trying to make a search engine with my database, parsing de text that the user write in the textbox to make a list with the cleaned words, in just one table of the DB in the fields: title, descripcion and tags, I have something like this but I don't know how to finish it: from django.http imp