I add a search suggest for my site just like Google Suggest, but the speed is a litte slow ... I did it in this way: When the user type in the search bar, I use Ajax to pass the keyword to a php file, which search the keyword in the database(MySql) with statement like this:
SELECT DISTINCT keywords
FROM `searchrecord`
WHERE keywords LIKE $keywords%
表格查询记录大约有500 000份。
但最后,速度几乎是无法忍受的,我不得不等待很长时间才能看到建议的语句。 你们是否建议如何加快这项工作?