I have a database with 300.000 rows with values. I have e AJAX autosuggest but it is now to slow when it tried to find the best matches.
I have looked at this external library from http://johannburkard.de/software/stringsearch/, but as i understand this only make a faster indexOf("world"), and that means if you type "wordl" and search you will not find the value "world".
I need a way to make som point, so search for "wordl", will return "world" if that is a match.
Right now I do like this:
String searchWord = "et";
String value = "test";
int point = 0;
if searchWord.charAt(1).contains(value)
point = point +1;
if searchWord.charAt(2).contains(value)
point = point +1;
if (searchWord.chartAt(1)+searchWord.chartAt(2)).contains(value)
point = point +5
This means that if you don't eter the first letter correct you still get some suggestions. In the suggestion it will return 2 points. If you type "es" it will return 7 points.
Java 10? – Peter Lawrey Mar 1 '12 at 18:04