Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
Check this: stackoverflow.com/questions/8451578/… – Tudor Mar 1 '12 at 16:03
I would suggest you take some more time to correct all the mistakes in your question and make it more understandable. – talnicolas Mar 1 '12 at 16:03
Have you considered using substring indexes, i.e. create index of the first 3, 4, 6, 10 characters of strings. that could speed things up significantly – scibuff Mar 1 '12 at 16:04
If you don't like that library, then please simply ignore it and ask for help in general. – Andreas_D Mar 1 '12 at 16:09
What is Java 10? – Peter Lawrey Mar 1 '12 at 18:04
show 1 more comment

closed as not a real question by Andreas_D, BoltClock Mar 1 '12 at 16:08

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Take a look at http://lucene.apache.org/core/.

This might be what you're looking for. It's highly customizable and really fast.

share|improve this answer
I will try look into it, but not only i need to get the bedst match, it also have to do it 200.000 times, so it have to be very fast. – boje Mar 3 '12 at 21:59

Not the answer you're looking for? Browse other questions tagged or ask your own question.