Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This works, but is unusably slow. The text file isn't 'small', but still loads very quickly.

This is meant to be an alternative to our previous method that pulled the information from a sqlite table. This resulted in a very long load time (lots of queries), but a quick and responsive autocomplete.

Any suggestions?

var availableTags;
$.get("autocomplete.txt", function(data){
    availableTags = data.split(",");
});


$( "#tags" ).autocomplete({
    source: availableTags,
    appendTo: '#autocompleteDump'
});
share|improve this question
To clarify, the populating of 'availableTags' is snappy, but the autocomplete() method is running very slowly. Is this correct? – Kyle Humfeld Jan 6 '11 at 20:25
@Kyle Humfeld Yes. When I write into the autocomplete field the autocomplete functions very very slowly. Sometimes it also gives me a "This script is running slowly..." prompt. – fluorescentLAMP Jan 6 '11 at 20:31
And are you using any of the autocomplete plugins mentioned here? choosedaily.com/1308/15-jquery-autocomplete-plugins-tutorials – Kyle Humfeld Jan 6 '11 at 20:54
@Kyle Humfeld I am using the standard jQuery UI autocomplete. From here: jqueryui.com/demos/autocomplete – fluorescentLAMP Jan 6 '11 at 20:58
i would go back to using a database. it will be faster for sure. just make sure you are adding an index for the field you are searching in the database. – dqhendricks Jan 6 '11 at 21:32
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.