Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想测试 MySQL InnoDB 全文搜索作为我的 Django 单元测试的一部分,例如:
object__search='abc'
但是在单元测试中搜索失败。相同的搜索在 Django 代码中有效 - 它只是在单元测试中失败
MySQL 全文索引仅在 DB 提交后更新。我假设您正在使用创建事务但不提交的 Django TestCase。相反,使用 TransactionTestCase,或滚动您自己的派生 TestCase 注意:TransactionTestCase 在测试结束时清除数据库中的所有数据。