浙江省高等学校教师教育理论培训

微信搜索“毛凌志岗前心得”小程序

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

Django MySQL full text search - Stack Overflow

You can use full text search in django

MyItem.objects.filter(title__search="some search text")

One thing is - you can't define a fulltext index from a Django model, you need to do in directly in a database (using PHPMyAdmin or SQL query)

See Django documentation:
http://docs.djangoproject.com/en/dev/ref/models/querysets/#search

posted on 2012-06-07 21:33  lexus  阅读(278)  评论(0编辑  收藏  举报