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%'
tablo 'searchrecord' yaklaşık 500.000 kayıtları vardır.
Ama sonunda, hız neredeyse dayanılmaz, ben öneririm kelimeleri pop görmek için uzun bir süre beklemek zorunda. Bunu hızlandırmak için nasıl hakkında herhangi bir öneriniz var mı?