create table test 
(
id int(1) not null primary key auto_incrementj,
title varchar(255) not null,
content text not null,
pubtime int(11) not null,
author varchar(128)
)里面有20万条数据,用户在搜索过程中,常常用title,author这两个条件来搜索。这两个上面已经建立了一些索引。
但是用like模糊查询的时候,需要1.7秒的速度来查询。如select * from test where title like '%编程%' and author like '%admin%;'如何提高类似这样的搜索啊。让搜索快,准。我用过全文检索。比较快,但是很多缺点。当输入小于4个字节。检索不出记录,当检索的字段超过了全文的50%,同样检索不出结果。请问。如何解决