James Bennett wrote:
> On 6/28/06, Geert Vanderkelen <[EMAIL PROTECTED]> wrote:
>> I'm also not sure how you going to use the full text
>> searching unless there is a patch now too..
> 
> For just querying against the DB, having fulltext indexes set up
> should be sufficient; the DB's query optimizer will recognize that
> there's an index for the table/column you're querying on and use that.
> 

Not true for FULLTEXT indexes. These needs the usuage of special functions 
like:  MATCH (col1) AGAINST (expr)

In Django you need to set the field lookup type explained here:
   http://www.djangoproject.com/documentation/db_api/#field-lookups

As far as I can see, only BOOLEAN MODE is supported, which will be used more 
  frequently anyway.

Cheers,

Geert

-- 
Geert Vanderkelen, Support Engineer, MySQL AB

--~--~---------~--~----~------------~-------~--~----~
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]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to